body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: url('pexels-akhil-saji-2152011731-33361363.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.login-container {
    background: rgba(255, 255, 255, 0.07);
    padding: 30px;
    border-radius: 15px;
    width: 320px;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

h2 {
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 1px;
}

input[type="text"], 
input[type="password"]
 {
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.8);
    background: transparent;
    color: white;
    font-size: 14px;
    outline: none;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-weight:300;
}

.options {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 20px;
}

.options label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.options a {
    color: #ddd;
    text-decoration: none;
}

button {
    width: 100%;
    padding: 10px;
    background: white;
    color: black;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #ddd;
}

.register-link {
    margin-top: 15px;
    font-size: 12px;
}

.register-link a {
    color: #fff;
    text-decoration: underline;
}

.error {
    color: #ff6b6b;
    font-size: 12px;
}
.success {
    color: #4caf50;
    font-size: 12px;
}

