/* 
   File: assets/css/style.css
   Theme: Premium Mobile App (Glass & Gradient)
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #4facfe;
    --secondary: #00f2fe;
    --bg-dark: #0f172a;
    --card-glass: rgba(255, 255, 255, 0.95);
    --text-dark: #333;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; -webkit-tap-highlight-color: transparent; }

body {
    background: #f0f2f5;
    color: var(--text-dark);
    font-size: 14px;
    overflow-x: hidden;
}

/* Mobile Wrapper */
.app-container {
    max-width: 480px; /* Mobile width limit */
    margin: 0 auto;
    background: #fff;
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 50px rgba(0,0,0,0.1);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-enter { animation: fadeInUp 0.6s ease forwards; }

/* Buttons */
.btn-primary {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
    transition: 0.2s;
}
.btn-primary:active { transform: scale(0.98); }

/* Inputs */
.input-box {
    position: relative;
    margin-bottom: 20px;
}
.input-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}
.input-box input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #eee;
    background: #f9f9f9;
    border-radius: 12px;
    outline: none;
    transition: 0.3s;
}
.input-box input:focus {
    border-color: var(--primary);
    background: white;
}

/* Full Screen Backgrounds (Login/Splash) */
.full-screen-bg {
    background: linear-gradient(135deg, #1e1e2e 0%, #2a2a40 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}