﻿body {
}
/* General reset for better consistency */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f7fa;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Wrapper for the login form */
.login-container {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 400px;
    padding: 30px;
}

    /* Login form heading */
    .login-container h1 {
        font-size: 24px;
        margin-bottom: 20px;
        color: #333333;
        text-align: center;
    }

    /* Label styles */
    .login-container label {
        font-size: 14px;
        color: #555555;
        display: block;
        margin-bottom: 8px;
    }

    /* Input field styles */
    .login-container input[type="text"],
    .login-container input[type="password"],
    .login-container select {
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
        border: 1px solid #dddddd;
        border-radius: 4px;
        font-size: 14px;
        box-sizing: border-box;
    }

        /* Input field focus effect */
        .login-container input:focus,
        .login-container select:focus {
            border-color: #007bff;
            outline: none;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
        }

    /* Button styles */
    .login-container button {
        width: 100%;
        padding: 12px;
        background-color: #007bff;
        border: none;
        color: #ffffff;
        font-size: 16px;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        /* Button hover effect */
        .login-container button:hover {
            background-color: #0056b3;
        }

    /* Small text for instructions or copyright */
    .login-container .small-text {
        font-size: 12px;
        color: #888888;
        text-align: center;
        margin-top: 10px;
    }
