body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #f5a623, #4285f4);
    overflow: hidden;
}

.login-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

h2 {
    color: white;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-group {
    margin-bottom: 15px;
    width: 100%;
    max-width: 300px; /* Match the button width */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

label {
    color: white;
    margin-bottom: 5px;
    font-size: 14px;
    width: 100%;
    text-align: left;
}

input {
    width: 100%;
    max-width: 300px; /* Increased to match the button */
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 14px;
    box-sizing: border-box;
}

button {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: white;
    color: black;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: #e0e0e0;
}

a {
    display: block;
    margin-top: 15px;
    color: white;
    text-decoration: none;
    font-size: 14px;
}

a:hover {
    text-decoration: underline;
}