/* style.css - Habbo Retro Style */
body { 
    font-family: 'Ubuntu', 'Trebuchet MS', Arial, sans-serif; 
    background-color: #1e1e24; 
    color: #fff; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    min-height: 100vh; 
    margin: 0; 
    background: radial-gradient(circle, #2c2c38 0%, #111115 100%); 
}

.habbo-box { 
    background: #2a2a35; 
    border: 2px solid #3f3f4e; 
    border-radius: 6px; 
    box-shadow: 0 8px 24px rgba(0,0,0,0.6); 
    width: 380px; 
    padding: 25px; 
    overflow: hidden; 
}

.habbo-header { 
    border-bottom: 2px solid #3f3f4e; 
    padding-bottom: 12px; 
    margin-bottom: 20px; 
    text-align: left; 
}

.habbo-header h2 { 
    margin: 0; 
    color: #ff9f43; 
    font-size: 22px; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
}

.habbo-header p { 
    margin: 5px 0 0 0; 
    color: #bbb; 
    font-size: 13px; 
}

.form-group { 
    text-align: left; 
    margin-bottom: 15px; 
}

.form-group label { 
    display: block; 
    font-size: 13px; 
    font-weight: bold; 
    color: #ddd; 
    margin-bottom: 5px; 
}

input[type="text"], input[type="email"], input[type="password"], select { 
    width: 100%; 
    padding: 10px; 
    border: 2px solid #444; 
    background: #1e1e24; 
    color: #fff; 
    border-radius: 4px; 
    box-sizing: border-box; 
    font-size: 14px; 
    transition: border-color 0.2s; 
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, select:focus { 
    border-color: #ff9f43; 
    outline: none; 
}

.birthday-row { 
    display: flex; 
    gap: 10px; 
}

.birthday-row select { 
    flex: 1; 
}

.btn-habbo { 
    width: 100%; 
    padding: 12px; 
    background: #5cbd5c; 
    border: none; 
    border-bottom: 4px solid #458b45; 
    color: #fff; 
    font-weight: bold; 
    border-radius: 4px; 
    cursor: pointer; 
    font-size: 16px; 
    margin-top: 15px; 
    text-transform: uppercase; 
    text-shadow: 0 1px 2px rgba(0,0,0,0.4); 
}

.btn-habbo:hover { 
    background: #6fcc6f; 
}

.btn-habbo:active { 
    border-bottom-width: 1px; 
    margin-top: 18px; 
    padding-bottom: 11px; 
}

.error { 
    color: #ff6b6b; 
    font-size: 13px; 
    text-align: left; 
    background: rgba(255,107,107,0.1); 
    padding: 10px; 
    border-radius: 4px; 
    border-left: 4px solid #ff6b6b; 
    margin-bottom: 15px; 
}

.success { 
    color: #5cbd5c; 
    font-size: 13px; 
    text-align: left; 
    background: rgba(92,189,92,0.1); 
    padding: 10px; 
    border-radius: 4px; 
    border-left: 4px solid #5cbd5c; 
    margin-bottom: 15px; 
}

.info-txt { 
    font-size: 11px; 
    color: #777; 
    margin-top: 15px; 
    text-align: center; 
}