:root {
    --color-black: #000;
    --primary-color: #025964;
}
body {
    font-family: "Poppins", sans-serif;
}

.login-wrapper {
    min-height: 100vh;
    background-color: #f8f9fa;
    padding: 20px;
}

.login-container {
    max-width: 500px;
    width: 100%;
    padding: 2.5rem;
    background: white;
    border: 2px solid #f5f7f9;
    border-radius: 10px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}

.login-header {
    display: flex;
    align-items: center;
}

.login-logo {
    height: 83.74px;
    width: 83.74px;
}

.login-title {
    font-size: 30px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.login-subtitle {
    color: #989898;
    font-size: 18px;
    font-weight: 400;
}

.form-section {
    margin-bottom: 1.75rem;
}

.section-title {
    font-size: 14px;
    font-weight: 500;
    color: #0e121d;
    margin-bottom: 0.75rem;
}

.input-group-text {
    background-color: white;
    border-right: none;
    color: #989898;
}

.form-control {
    padding: 0.85rem 0rem;
    border-left: none;
    border-color: #e9ecef;
}

.form-control:focus {
    box-shadow: none;
    border-color: #e9ecef;
}

.forgot-password {
    color: #00d47d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.forgot-password:hover {
    color: #01434d;
    text-decoration: underline;
}

.login-btn {
    height: 56px;
    padding: 0.75rem;
    font-weight: 500;
    border-radius: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    transition: background-color 0.2s;
    font-size: 18px;
    height: 48px;
}

.login-btn:hover {
    background-color: #01434d;
}

.invalid-feedback {
    font-size: 0.85rem;
    margin-top: 0.5rem;
}
.forgot-email-margin {
    margin-bottom: 150px;
}
