/* Authentication Pages Styles (Sign In, Sign Up, Forgot Password) */

:root {
    --primary: #FF6B6B;
    --primary-dark: #E85D5D;
    --secondary: #4ECDC4;
    --secondary-dark: #45B7AF;
    --accent: #FFE66D;
    --dark: #2C3E50;
    --light: #F7F9FC;
    --text: #34495E;
}

body {
    background: linear-gradient(135deg, #F7F9FC 0%, #E8EFF5 100%);
    min-height: 100vh;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
}

header h1 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.auth-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(78, 205, 196, 0.1);
}

.auth-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-card .subtitle {
    text-align: center;
    color: var(--text);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.info-box {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    border-left: 4px solid var(--secondary);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text);
}

.info-box i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

.form-floating {
    margin-bottom: 1.5rem;
}

.form-floating input {
    border: 2px solid rgba(78, 205, 196, 0.2);
    border-radius: 12px;
    padding: 1rem 0.75rem;
    transition: all 0.3s ease;
}

.form-floating input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.25rem rgba(78, 205, 196, 0.15);
}

.main-signin-button {
    width: 100%;
    /* padding: 1rem 2rem; */
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    /* margin-bottom: 1rem; */
}

.main-signin-button:not(.btn-secondary) {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.main-signin-button:not(.btn-secondary):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.35);
}

.btn-secondary {
    background: linear-gradient(135deg, #5A6C7D 0%, #34495E 100%);
    color: white;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.secondary-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.free-badge-small {
    display: inline-block;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin: .5rem auto;
    width: 100%;
    text-align: center;
}

.free-badge-small i {
    margin-right: 0.5rem;
}

#installBanner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#installBanner button {
    cursor: pointer;
}

#installBanner button:first-of-type {
    position: absolute;
    right: 10px;
    top: 10px;
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
}

#installBanner button:last-of-type {
    background: white;
    color: var(--primary);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 2rem;
    color: var(--text);
}

footer a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}
