/* Body styles */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

/* Form container */
.login-container {
    width: 100%;
    max-width: 320px; /* Increased width for better layout */
    padding: 30px; /* Increased padding for more space */
    background: #fff; /* White background */
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1); /* Enhanced box shadow */
   
}

/* Login label */
.login-label {
    text-align: center;
    font-size: 36px; /* Larger font size */
    font-weight: bold;
    color: #0070c9;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px; /* Added margin for separation */
}

/* Form fields */
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px; /* Increased padding */
    margin: 10px 0; /* Adjusted margin */
    border: 1px solid #ccc; /* Softer border color */
    border-radius: 8px; /* Slightly rounder corners */
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s ease; /* Smooth transition on focus */
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #0070c9; /* Change border color on focus */
}

/* Submit button */
input[type="submit"] {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    border: none;
    border-radius: 8px;
    background-color: #0070c9;
    color: white;
    font-size: 18px; /* Increased font size */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #005ea5;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    
   
    .login-container {
        padding: 15px;
        border-radius: 10px;
        width: 85%;
        max-width: 350px;
        
    }

    .login-label {
        font-size: 28px;
        color: darkblue;
    }

    input[type="text"],
    input[type="password"] {
        padding: 14px;
        font-size: 16px;
    }

    input[type="submit"] {
        padding: 14px;
        font-size: 20px;
        background-color: darkblue;
        color: white;
    }
}



