/* Broadcast Overlay Login Page Styles - Campfire Style */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #060e16;
    height: 100dvh;
    max-height: -webkit-fill-available;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bcbcbc;
}

/* Subtle background effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(0, 255, 210, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(0, 255, 210, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* ==========================================================================
   LOGIN CONTAINER
   ========================================================================== */

.login-container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
}

/* ==========================================================================
   LOGO
   ========================================================================== */

.logo {
    text-align: center;
    margin-bottom: 40px;
}

.logo img {
    max-width: 280px;
    height: auto;
    margin-bottom: 12px;
}

.logo p {
    color: #bcbcbc;
    font-size: 14px;
    margin-top: 8px;
}

/* ==========================================================================
   FORM
   ========================================================================== */

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #00ffd2;
    background: rgba(0, 255, 210, 0.05);
}

.form-group input::placeholder {
    color: #555;
}

.form-group input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ==========================================================================
   ALERTS / MESSAGES
   ========================================================================== */

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 24px;
}

.alert-danger {
    background: rgba(255, 77, 77, 0.1);
    border: 1px solid rgba(255, 77, 77, 0.3);
    color: #ff6b6b;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.alert-success {
    background: rgba(0, 255, 210, 0.1);
    border: 1px solid rgba(0, 255, 210, 0.3);
    color: #00ffd2;
}

.badge-danger {
    display: inline-block;
    background: rgba(255, 77, 77, 0.2);
    color: #ff6b6b;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    margin-left: 8px;
}

/* ==========================================================================
   BUTTON
   ========================================================================== */

.btn-login {
    width: 100%;
    padding: 14px;
    background: #00ffd2;
    border: none;
    border-radius: 8px;
    color: #060e16;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #00e6bd;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 210, 0.2);
}

.btn-login:active {
    transform: translateY(0);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer-text {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #666;
}

.footer-text a {
    color: #00ffd2;
    text-decoration: none;
}

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

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 480px) {
    .login-box {
        padding: 40px 24px;
    }

    .logo img {
        max-width: 220px;
    }
}
