@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* General Styles */
body {
    font-family:Oswald, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Oswald, sans-serif;
    background: #172121;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

hr{
    color: #d9dbdd;
}

.custom-button {
    font-family: inherit;
    width: 90vw;
    max-width: 300px;
    height: 50px;
    min-height: 44px;
    gap: 10px;
    opacity: 1;
    border-radius: 1000px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #8BCB2A;
    color: black;
    border: none;
    display: block;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
}

/* Left Column - Form Styling */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.login-card {
    padding: 40px;
    border-radius: 16px;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
    width: 100%;
    max-width: 440px;
}

.login-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: white;
    text-align: center;
}

.otp-title {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #A7F432;
    text-align: center;
}

.otp-description {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 32px;
    color: #6C6969;
    text-align: center;
    font-family: 'Matter','Regular', sans-serif;
}

.form-group {
    margin-bottom: 24px;
}

.form-input {
    padding: 14px 16px;
    border: 2px solid #1c2727;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #1c2727;
    color: grey;
}

.form-input::placeholder {
    color: #a0a0a0;
    font-family: 'Poppins';
}

.form-input:focus {
    border-color: #8BCB2A;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

/* Password Wrapper */
.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 4px;
}

.password-toggle:hover {
    color: #8BCB2A;
}

/* Forgot Password */
.forgot-password-wrapper {
    text-align: right;
    margin-bottom: 24px;
    font-family: 'Matter','Regular', sans-serif !important;
}

.forgot-password-link {
    color: grey;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.forgot-password-link:hover {
    text-decoration: underline;
    color: #8BCB2A;
}

/* Login Button */
.login-button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #8BCB2A 0%, #8BCB2A 100%);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Right Column - Welcome Content */
.welcome-column {
    background: linear-gradient(135deg, #172121 0%, #415f14 100%);
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 30px 30px 30px 30px;
}

.welcome-content {
    max-width: 500px;
    text-align: center;
}

.welcome-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(45deg, #fff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-content p {
    font-size: 36px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 16px;
    opacity: 0.9;
    font-family: 'Oswald','Regular', sans-serif;
}

.welcome-image {
    position: relative;
    margin-top: 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    height: auto;
}

.otp-resend-wrapper {
    font-size: 14px;
    color: grey;
    font-family: 'Sans-serif', sans-serif;
}

/*crumbs*/

.f-36{
    font-size: 36px;
    font-weight: 500;
}

.grey-text{
    color: grey;
    font-size: 14px;
    font-weight: 400;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .auth-container {
        padding: 40px 20px;
    }
    
    .login-card {
        padding: 32px 24px;
    }
    
    .welcome-column {
        padding: 40px 20px;
    }
    
    .welcome-content h2 {
        font-size: 36px;
    }
}

/* Show welcome column only on large screens */
.d-lg-flex {
    display: flex !important;
}

@media (max-width: 991.98px) {
    .welcome-column {
        display: none !important;
    }
}

/* OTP input styles */
.otp-row .otp-input {
    width: 56px !important;
    height: 56px;
    font-size: 20px;
    padding: 0;
    border-radius: 8px 8px 0px 0px;
    border: 2px solid rgba(255,255,255,0.06);
    background-color: rgba(255,255,255,0.03);
    color: white;
    border-top: 2px solid rgba(255,255,255,0.06);
    border-right: 2px solid rgba(255,255,255,0.06);
    border-bottom: 2px solid rgba(255,255,255,0.06);
    border-left: 2px solid rgba(255,255,255,0.06);
    transition: border-bottom-color 0.3s ease;
    text-align: center;
}

.otp-input:focus {
    outline: none;
    box-shadow: none;
    border-bottom-color: #8BCB2A;
    border-top-color: rgba(255,255,255,0.06);
    border-right-color: rgba(255,255,255,0.06);
    border-left-color: rgba(255,255,255,0.06);
}

/* When input is filled (has value) */
.otp-input:not(:placeholder-shown) {
    border-bottom-color: #8BCB2A;
}

/* Alternative using JavaScript class - if you prefer more control */
.otp-input.filled {
    border-bottom-color: #8BCB2A;
}


.otp-row .otp-input.alternative {
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.06);
    transition: border-bottom 0.3s ease;
}

.otp-input.alternative:focus {
    border-bottom: 3px solid #8BCB2A;
}

.otp-timer {
    font-weight: 600;
    font-size: 14px;
    color: #A7F432 !important;

}

.resend-link{
    font-size: 14px;
    font-weight: 500;
    color: #8BCB2A;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.resend-link.disabled,
.resend-link[disabled] {
    opacity: 0.5;
    pointer-events: none;
}

.btn-round10{
    border-radius: 10px;
    padding: 10px 20px;
    background-color: #8BCB2A;
    border: 1px solid #8BCB2A;
    color: #172121;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

/* Semantic create button used for New actions across the app */
.btn-create {
    border-radius: 10px;
    padding: 10px 20px;
    background-color: #8BCB2A;
    border: 1px solid #8BCB2A;
    color: #172121;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn-create:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 203, 42, 0.12);
}

.btn-create:active {
    transform: translateY(0);
    box-shadow: none;
}

@media (max-width: 480px) {
    .otp-row .otp-input {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}


/* Component styles */

.br-10{
    border-radius: 10px;
}

.br-16{
    border-radius: 16px;
}

.br-20{
    border-radius: 20px;
}

.btn-outline-secondary:hover{
    background: #A7F432;
    color: #172121;
}

.text-grey{
    color: #B2B5B5;
}

