:root {
    --brand-primary: #00a597;
    --input-bg: #f7f7f7;
    --input-border: #e2e2e2;
    --text-primary: #333;
    --text-secondary: #464646;
    --text-tertiary: #5e6e6a;
    --text-placeholder: #959595;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: var(--text-primary);
    min-height: 100vh;
}

.forgot-password-container {
    min-height: 100vh;
}

.forgot-password-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 150px;
    background-color: #ffffff;
}

.logo-section {
    margin-bottom: 60px;
}

.logo-image {
    max-width: 200px;
    height: auto;
}

.forgot-password-heading {
    font-size: 30px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: -0.15px;
    line-height: 35px;
}

.forgot-password-subtext {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-tertiary);
    margin-bottom: 30px;
}

.forgot-password-form {
    width: 100%;
    max-width: 580px;
}

.form-label {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.form-control {
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 5px;
    height: 40px;
    padding: 11px 10px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-placeholder);
}

.form-control:focus {
    background-color: var(--input-bg);
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 165, 151, 0.25);
    color: var(--text-primary);
}

.btn-reset {
    background-color: var(--brand-primary);
    border: none;
    border-radius: 10px;
    height: 54px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    width: 100%;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.btn-reset:hover {
    background-color: #008a7d;
    color: #ffffff;
}

.btn-reset:focus {
    background-color: var(--brand-primary);
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(0, 165, 151, 0.5);
}

.forgot-password-right {
    padding: 0;
    height: 100vh;
    overflow: hidden;
}

.forgot-password-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.form-group {
    margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .forgot-password-right {
        display: none;
    }

    .forgot-password-left {
        padding: 50px 30px;
    }

    .forgot-password-form {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .forgot-password-left {
        padding: 30px 20px;
    }

    .logo-section {
        margin-bottom: 40px;
    }

    .forgot-password-heading {
        font-size: 28px;
    }
    .btn-reset{
        margin-top: 0;
    }
}