/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Login Container */
.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

/* Login Box */
.login-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    text-align: center;
}

.login-box h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 25px;
}

/* Form Styles */
.login-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login-box label {
    font-weight: 500;
    color: #555;
    text-align: left;
}

.login-box input, 
.login-box select, 
.login-box button {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

/* Input Focus */
.login-box input:focus,
.login-box select:focus {
    border-color: #4e54c8;
    outline: none;
    box-shadow: 0 0 5px rgba(78, 84, 200, 0.5);
}

/* Button */
.login-box button {
    background: #4e54c8;
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.login-box button:hover {
    background: #3b40a0;
}

/* Error & Success Messages */
.error {
    background: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 14px;
}

.success {
    background: #d4edda;
    color: #155724;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 14px;
}

/* Register Link */
.login-box p {
    margin-top: 15px;
    font-size: 14px;
    color: #555;
}

.login-box p a {
    color: #4e54c8;
    text-decoration: none;
    font-weight: 500;
}

.login-box p a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 500px) {
    .login-box {
        padding: 30px 20px;
    }

    .login-box h2 {
        font-size: 24px;
    }
}
