/* assets/css/style_auth.css */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;600;800&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Urbanist', sans-serif; }

body {
    background: url('https://images.unsplash.com/photo-1614850523459-c2f4c699c52e?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

body::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    z-index: 0;
}

.auth-container {
    position: relative; z-index: 1;
    width: 90%; max-width: 400px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    text-align: center;
}

.logo h1 {
    font-size: 28px;
    background: linear-gradient(to right, #00E5FF, #D500F9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    font-weight: 800;
}

.input-box {
    position: relative;
    margin-bottom: 20px;
}

.input-box input {
    width: 100%;
    padding: 16px 15px 16px 45px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.input-box input:focus {
    border-color: #D500F9;
    background: rgba(0,0,0,0.6);
}

.input-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.btn-main {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #00E5FF 0%, #D500F9 100%);
    border: none;
    color: white;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 16px;
    transition: 0.2s;
}

.btn-main:active { transform: scale(0.98); }

.toggle-link {
    margin-top: 25px;
    color: #aaa;
    font-size: 14px;
    cursor: pointer;
}

.toggle-link span { color: #00E5FF; font-weight: bold; }

.hidden { display: none; }