﻿body {
}
/* General Styles */

/*body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;*/
    /*    background: linear-gradient(to bottom, #1f4e5f, #2a7f64);*/
    /*background: #298b83;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding-top: 10px;
}*/

/* Container */
/*.container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 530px;
    text-align: center;
    height: 95vh;
}*/

input.form-control {
    text-align: center;
    color: #ffffff !important; /* If you want to center the text inside the textbox */
}

/* Header */
.header {
    /*background: linear-gradient(to bottom, #538b29, #3f8114);*/
    background: #ffffff;
    padding: 32px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
 
}

    .header h2 {
        margin: 0;
        font-size: 20px;
    }

    .header p {
        font-size: 12px;
        margin-top: 10px;
    }

/* Login Form */
/*.login-form {
    padding: 20px;
}*/

.login-form h3 {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
}

.input-box {
    display: flex;
    align-items: center;
    background: #076a62; /* Dark background for contrast */
    padding: 1px;
    border-radius: 25px;
    margin: 4px 0;
}

    .input-box i {
        font-size: 16px;
        color: white; /* White icon */
        margin-right: 12px; /* Space between icon and input field */
        padding: 8px;
    }

    .input-box input {
        border: none;
        background: none;
        outline: none;
        width: 100%;
        color: #fff; /* White text */
        font-size: 14px;
        padding-right: 55px;
    }

        .input-box input::placeholder {
            color: rgba(255, 255, 255, 0.7); /* Light white placeholder */
        }

/* Options */
.options {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 15px;
}

    .options a {
        text-decoration: none;
        color: #538b29;
        font-weight: bold;
    }

/* Login Button */
.login-btn {
    background: #076a62;
    color: white;
    border: none;
    padding: 10px 0;
    width: 100%;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

    .login-btn:hover {
        background: #298b83;
    }

.checkbox-label {
    color: #538b29; /* Set text color */
    font-size: 12px;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.custom-checkbox {
    accent-color: #538b29; /* Change checkbox color */
    width: 16px;
    height: 16px;
    margin-right: 5px; /* Space between checkbox and text */
}
