@import url('variables.css');
@import url('animations.css');
@import url('base.css');

body {
    background: linear-gradient(135deg, #111111 0%, #2a2a2a 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    overflow: hidden;
    position: relative;
}

/* Re-add globes specifically for login page context if needed, 
   or rely on them being in the HTML. 
   Assuming HTML has .globe elements. */

.glass-container-login {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    text-align: center;
    position: relative;
    z-index: 10;
    margin: 20px;
}

h1 {
    margin: 0 0 40px 0;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1.8rem;
    color: #fff;
}

h1 span { 
    color: var(--primary-color);
}

.input-group {
    margin-bottom: 25px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

input[type="password"], input[type="text"] {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s;
}

input[type="password"]:focus, input[type="text"]:focus {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.1);
}

button {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: var(--primary-color);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
    margin-top: 10px;
}

button:hover {
    transform: translateY(-2px);
    background: var(--primary-hover);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.3);
}

.error {
    background: rgba(255, 71, 87, 0.1);
    color: #ff6b81;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-size: 0.9em;
    border: 1px solid rgba(255, 71, 87, 0.2);
    text-align: left;
    display: flex;
    align-items: center;
}

.error:before {
    content: '!';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background: rgba(255, 71, 87, 0.2);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 12px;
    font-weight: bold;
}
