﻿/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    background-color: #024b1b; /* Light grey background */
}

/* Header for Logo and Company Name */
.header {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #024b1b;
}

/* Login Container */
.login-container {
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Login Box */
.login-box h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #343a40;
    font-weight: bold;
}

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-size: 14px;
        color: #555;
    }

    .form-group input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 14px;
        outline: none;
        transition: box-shadow 0.3s, border-color 0.3s;
    }

        .form-group input:focus {
            border-color: #007bff;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
        }

.password-container {
    position: relative;
}

    .password-container input {
        padding-right: 40px; /* Space for the toggle icon */
    }

    .password-container i {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        color: #555;
        font-size: 18px;
    }

        .password-container i:hover {
            color: #007bff;
        }

/* Button Styles */


/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

    .checkbox-group input[type="checkbox"] {
        margin-right: 10px;
        accent-color: #007bff;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .login-container {
        max-width: 90%;
    }
}
