/* General styles for login */
body {
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
}

.login-box {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center;
}

.login-logo {
    margin-bottom: 20px;
}

.profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

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

input[type="submit"] {
    background-color: #4285f4;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
}

input[type="submit"]:hover {
    background-color: #357ae8;
}

/* Hide form labels */
.hidden-label {
    display: none;
}

/* Responsive Design */
@media screen and (max-width: 500px) {
    .login-box {
        width: 90%;
    }
}
