/* Ensure body covers the full viewport height and centers the form */
.auth-body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    background: #0e0e0e;
    background-size: cover;
    min-height: 100vh; /* Make sure body takes full height */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure the section is full-width and gives space around */
.auth-section {
    width: 100%;
    padding: 40px 20px;
    display: flex; /* Flex to center content inside the section */
    justify-content: center; /* Horizontally center */
}

/* Form container styles */
.auth-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 0 20px #00f7ff88;
    animation: floatUp 0.5s ease;
}

/* Float-up animation for the form */
@keyframes floatUp {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Title styling */
.auth-title {
    color: #00f7ff;
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    letter-spacing: 2px;
}

/* Form group styling */
.auth-form-group {
    margin-bottom: 20px;
}

.auth-form-group label {
    display: block;
    color: #ffffffcc;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Input styling */
.auth-form-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #00f7ff66;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

/* Input focus styling */
.auth-form-group input:focus {
    background: rgba(0, 247, 255, 0.1);
    border-color: #00f7ff;
}

/* Button styling */
.auth-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #00f7ff, #00aaff);
    border: none;
    border-radius: 12px;
    color: #0e0e0e;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

/* Button hover effect */
.auth-btn:hover {
    background: linear-gradient(45deg, #00aaff, #00f7ff);
    transform: translateY(-3px);
}

/* Text under form */
.auth-bottom-text {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #ffffffaa;
}

/* Link styling */
.auth-bottom-text a {
    color: #00f7ff;
    text-decoration: none;
}

/* Alert styles */
.alert {
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 14px;
}

.alert-danger {
    background: rgba(255, 0, 0, 0.2);
    color: #ff4d4d;
}

.alert-success {
    background: rgba(0, 255, 0, 0.2);
    color: #4dff4d;
}
