body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url("../images/login_background.jpg") no-repeat center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

.login-card {
    background: #ffffff;
    padding: 20px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 350px;
}

.login-card h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group label {
    position: absolute;
    transform: translateY(-50%);
    font-size: 18px;
    color: #aaa;
}

.form-group input {
    padding: 10px 0px 10px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    width: 100%;
}

.form-group input:focus {
    border-color: #7f00ff;
    outline: none;
}

.btn-login {
    background-color: #00c851;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.btn-login:hover {
    background-color: #007e33;
}

.options {
    margin-top: 20px;
}

.options a {
    display: block;
    color: #7f00ff;
    text-decoration: none;
    margin: 5px 0;
}

.options a:hover {
    text-decoration: underline;
}

.create-account {
    font-weight: bold;
    color: #00c851;
}

.message-error {
    background: rgba(230,64,64,.1);
    color: #e64040;
    padding: 10px;
    border-radius: 4px;
}

.message-success {
    background: rgba(0, 255, 0, .1);
    color: #00c851;
    padding: 10px;
    border-radius: 4px;
}

.message-info {
    background: rgba(0, 0, 255, .1);
    color: #007bff;
    padding: 10px;
    border-radius: 4px;
}

.message-warning {
    background: rgba(255, 165, 0, .1);
    color: #ff9800;
    padding: 10px;
    border-radius: 4px;
}

.logo {
    position: absolute;
    top: 30px;
    left: 60px;
    height: 62px;
}