* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    height: 100vh;
    background-color: #f1f3f6;


}

/* Main Content */
.container {
    max-width: 1250px;
    margin: 0 auto;
    margin-top: 50px;
    padding: 0 10px;


    /* Center content inside this container */
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center;     /* vertical center if height exists */
    min-height: 400px;       /* add height to allow vertical centering */
}

.error{
    text-align: center;
    color: red;
}

.login-container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
}

.login-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #444;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.form-group input:focus {
    border-color: #3498db;
    outline: none;
}

.login-button {
    width: 100%;
    padding: 12px;
    background-color: #5cad92;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.bottom-text {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

@media (max-width: 500px) {
    .login-container {
        margin: 0 20px;
    }
}