﻿body {
    background-color: #fdf4e4; /* Light beige background */
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.fix-wrapper {
    min-height: 100vh;
    display: flex;
    padding: 30px 0;
    align-items: center;
}
/* Form Container Styling */
.form-container {
    max-width: 400px;
    background-color: #fdf4e4;
    border: 6px solid #2a0136;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    /* text-align: center; */
    align-items: center;
}

    .form-container h2 {
        color: #2a0136;
        margin-bottom: 1.5rem;
        /* font-weight: bold; */
    }

.form-group label {
    display: flex;
    justify-content: space-between;
    color: #2a0136;
    font-weight: bold;
}

.form-control {
    border: none;
    border-bottom: 1px solid #2a0136;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
}

    .form-control:focus {
        border-color: #2a0136;
        box-shadow: none;
    }

.password-container {
    position: relative;
}

    .password-container span {
        position: absolute;
        right: 10px;
        top: 8px;
        color: #2a0136;
        cursor: pointer;
    }

.forgot-password {
    display: block;
    text-align: left;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: bold;
    color: #2a0136;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #2a0136;
    border: none;
    border-radius: 20px;
    width: 100%;
    padding: 0.5rem;
    /* font-weight: bold; */
}

    .btn-primary:hover {
        background-color: #1d012a;
    }

.form-footer {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #2a0136;
    font-weight: 300;
}

    .form-footer a {
        color: #2a0136;
        font-weight: bold;
        text-decoration: none;
    }

        .form-footer a:hover {
            text-decoration: underline;
        }
/* Footer Button */
.footer-button {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    background-color: #ff4a4a;
    color: #fff;
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
}

    .footer-button:hover {
        background-color: #e03c3c;
    }

    span{
        color: red;
        font-weight:300;
    }