/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

/* Body Styling */
body {
    background-color: #f0f8ff; /* Light blue background */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

/* Container for Form */
.container {
    background-color: #ffffff; /* White background for the form */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px; /* Makes the form responsive */
    padding: 30px;
    text-align: center;
}

/* Logo inside Form */
.container .logo img {
    max-width: 100px; /* Adjust logo size */
    height: auto;
    margin-bottom: 20px;
}

/* Form Header */
.container h1 {
    font-size: 24px;
    color: #0056b3; /* Deep blue */
    margin-bottom: 20px;
}

/* Input Fields */
input[type="text"], input[type="password"] {
    width: 100%;
    padding: 12px 20px;
    margin: 10px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

input[type="text"]:focus, input[type="password"]:focus {
    outline: none;
    border-color: #0056b3; /* Blue focus border */
    box-shadow: 0 0 5px rgba(0, 86, 179, 0.5); /* Light blue glow */
}

/* Password Visibility Icon */
.container-pass {
    position: relative;
    margin-bottom: 20px;
}

.container-pass i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #0056b3; /* Icon color */
}

/* Submit Button */
input[type="submit"] {
    background-color: #0056b3; /* Blue button */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #003d80; /* Darker blue */
}

/* Mobile Friendly Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .container .logo img {
        max-width: 80px; /* Smaller logo for smaller screens */
    }
}
