.forgetpass-content {
    max-width: 80%;
    margin: auto;
    padding: 20px 0;
}

.forgetpass-container {
    display: flex;
}


/* image */

.image-section {
    flex: 1;
    justify-content: center;
    margin: auto;
}

.image-section img {
    max-width: 100%;
    max-height: 600px;
    border-radius: 15px;
    box-shadow: none;
    width: 600px;
    height: auto;
}


/* form right */

.form-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.form-box {
    width: 100%;
    max-width: 520px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.welcome-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}


/* Input row */

.input-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.input-row .input-group {
    flex: 1;
    margin-bottom: 0;
}


/* Input groups */

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    outline: none;
}

.input-group input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.otp-group {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    margin-bottom: 20px;
}

.otp-group input {
    flex: 1;
}

.otp-group button {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    background-color: #0d6efd;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.otp-group button:hover {
    background-color: #0a58ca;
    transform: translateY(-1px);
}

.back-to-login {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #666;
}

.back-to-login a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
}

.back-to-login a:hover {
    color: #0a58ca;
    text-decoration: underline;
}

@media (min-width: 2560px) and (max-width: 3840px) {
    .forgetpass-content {
        max-width: 50%;
    }
}

@media (min-width: 3840px) {
    .forgetpass-content {
        max-width: 30%;
    }
}

@media (max-width: 768px) {
    .forgetpass-container {
        flex-direction: column;
    }
    .form-box {
        padding: 32px 24px;
    }
    .title {
        font-size: 28px;
    }
    .welcome-text {
        font-size: 15px;
        margin-bottom: 28px;
    }
    .input-row {
        flex-direction: column;
        gap: 0;
    }
    .input-row .input-group {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .form-box {
        padding: 28px 20px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }
    .title {
        font-size: 24px;
    }
    .welcome-text {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .btn {
        padding: 13px 18px;
        font-size: 15px;
    }
    .input-group {
        margin-bottom: 18px;
    }
    .input-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    .input-group input {
        padding: 11px 14px;
        font-size: 14px;
    }
    .checkbox-container {
        font-size: 13px;
        padding-left: 28px;
    }
    .checkmark {
        height: 18px;
        width: 18px;
    }
    .checkbox-container .checkmark:after {
        left: 4px;
        top: 1px;
        width: 4px;
        height: 9px;
    }
    .recaptcha-box {
        padding: 12px;
    }
    .forgot-password {
        margin-bottom: 20px;
    }
    .divider {
        margin: 20px 0;
    }
}