/* Campfire Login Page Styles */

* {
    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: 1000px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.login-box {
    flex: 1;
    min-width: 420px;
    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);
}

.login-illustration {
    flex: 1;
    max-width: 420px;
    display: block;
}

.login-illustration img {
    width: 100%;
    height: auto;
}

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

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

.logo h1 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.logo h1 span {
    color: #00ffd2;
}

.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;
}

/* ==========================================================================
   ERROR MESSAGE
   ========================================================================== */

.error-message {
    background: rgba(255, 77, 77, 0.1);
    border: 1px solid rgba(255, 77, 77, 0.3);
    color: #ff6b6b;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 24px;
}

/* ==========================================================================
   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: 768px) {
    .login-container {
        flex-direction: column;
        max-width: 420px;
    }

    .login-box {
        min-width: auto;
    }

    .login-illustration {
        display: none;
    }
}
