body {
    background: linear-gradient(135deg, #000428 0%, #004e92 100%);
}

.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.section-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 168, 255, 0.5);
}

.cta-button {
    width: 100%;
    padding: 12px;
    background-color: #00a8ff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

.register-link {
    text-align: center;
    margin-top: 20px;
    color: #ffffff;
}

.register-link a {
    color: #00a8ff;
    text-decoration: none;
    font-weight: bold;
}

.register-link a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .login-container {
        margin: 50px auto;
        padding: 30px;
    }

    .section-title {
        font-size: 2rem;
    }
}