/* Base background */
body {
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Wrapper to fully center */
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Login Card */
.login-container {
    background-color: #ffffff;
    padding: 40px 30px 20px 30px; /* Added slightly more space at bottom */
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px; /* Ensures card has enough height for layout */
}

/* Logo */
.logo {
    max-width: 150px;
    margin-bottom: 20px;
    align-self: center;
}

/* Heading */
h1 {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
}

/* Form */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Inputs */
input[type="text"],
input[type="email"],
input[type="password"] {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

/* Button */
button {
    padding: 12px;
    background-color: #007bff;
    border: none;
    color: white;
    font-size: 18px;
    border-radius: 6px;
}

/* Version */
.version {
    margin-top: auto;
    font-size: 12px;
    color: #bbb;
    text-align: center;
    padding-top: 20px;
}
