body {
    font-family: Arial, sans-serif;
    background-image: url('images/backgrounds/2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    box-sizing: border-box;
}

.login-box {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding: 40px 30px; /* Adjusted padding for even spacing */
    text-align: center;
    position: relative;
}

.logo {
    width: 160px;
    margin-bottom: 20px; /* Increased margin for even spacing */
}

h2 {
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    background-color: #A4A4A6;
    color: #05083F;
    text-align: center;
    box-sizing: border-box;
}

.input-group input::placeholder {
    color: #05083F;
}

.login-button {
    width: 100%;
    padding: 12px;
    background-color: #030536;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px; /* Ensure even spacing with input fields */
}

.login-button:hover {
    background-color: #000055;
}

.error {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}

.help-icon {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 55px;
    height: auto;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.help-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 480px) {
    .login-box {
        padding: 20px;
    }
}
