/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url("pexels-pixabay-53594.jpg");
    
}

/* Login Container */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
}

/* Login Card */
.login-card {
    background: rgba(255, 255, 255, 0.8);
    color: #00509e;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 30px;
    width: 100%;
    text-align: center;
}

.login-card h1 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

/* Form Styles */
.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #05acee;
}

/* Login Button */
.btn-login {
    background: #05acee;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
    width: 100%;
}

.btn-login:hover {
    background: #0b8ec2;
}

/* Error Message */
.error {
    color: #05acee;
    font-size: 14px;
    margin-top: 10px;
}

/* Register Link */
.register-link {
    margin-top: 20px;
    font-size: 14px;
}

.register-link a {
    color: #05acee;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.register-link a:hover {
    color: #0b8ec2;
}
