/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;


}

.container-fluid {
    padding-left: 10% !important;
    padding-right: 10% !important;
}

/* Color variables */
:root {
    --primary: #1C5A31;
    --secondary: #CFBB00;
    --black: #000000;
    --white: #FFFFFF;
    --red: #BA1616;
    --hover-primary: #1C5A31;
    --hover-outline: #1C5A31;
}

/* Button styles */

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
}

.btn-primary:hover {
    background-color: var(--hover-primary) !important;
    border-color: var(--hover-primary) !important;
    color: var(--white) !important;
}

.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
    background-color: transparent !important;
}

.btn-outline-primary:hover {
    color: var(--white) !important;
    border-color: var(--hover-primary) !important;
    background-color: var(--hover-primary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-primary:hover {
    color: var(--hover-primary) !important;
}

:hover {
    transition: all 0.3s ease-out;
}

.login-container {
    width: 800px;
    max-width: 100%;
    background: white;
    padding: 40px;
    padding-bottom: 0px;
    border-radius: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 5px solid var(--primary);
}

/* Make it responsive for smaller screens */
@media (max-width: 992px) {
    .login-container {
        width: 90%;

    }

    .footer {
        height: 30px;
        background-color: var(--primary);
        color:#FFFFFF;
        margin-left: -20px;
        margin-right: -20px;
        border-bottom-right-radius: 30px;
        border-bottom-left-radius: 30px;


    }
}

.welcome-text {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 48px;
    letter-spacing: 2%;
}

.login-title {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: 2%;
}

.form-control {
    border-radius: 10px;
    padding: 10px;
    height: 48px;
    border-color: #7e7474;
}

.form-control::placeholder {
    color: #7e7474;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 2%;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.form-check-input:active {
    color: #0064A7;
}

.form-check-input:focus {
    box-shadow: none;
    border-color: var(--primary);

}


.form-check-label {
    font-weight: 300;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 2%;
    color: #0064A7;
}

.btn-primary {
    background-color: var(--primary);
    border: none;
    padding: 10px;
    border-radius: 10px;
    font-weight: bold;
    width: 280px;
    max-width: 100%;
}

.btn-primary:hover {
    background-color: #0077CC;
}


/* General paragraph styling */
.register-text {

    font-weight: 300;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 2%;
}

/* Styling for Register link */
.register-text a {
    font-weight: 500;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 2%;
    text-decoration: underline;
    text-decoration-style: solid;

    text-decoration-thickness: 1px;
    text-decoration-skip-ink: auto;
}

.footer {

    height: 30px;
    background-color: #CEEEF7;
    margin-left: -40px;
    margin-right: -40px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;


}

.footer a {
    text-align: center;
    font-size: 14px;
    text-decoration: none;
    color: #000000;
    padding: 7px;
    display: flex;
    justify-content: center;
    align-self: center;

}

.otp-input-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    border-color: #7e7474;
}

.otp-digit {
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 1.5rem;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.otp-digit:focus {
    border-color: var(--primary);
    outline: none;

}