/* style_auth.css - Modern Login Design */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }

body {
    background: linear-gradient(135deg, #ffc85c, #ff9f43); /* A képen látható sárga/narancs átmenet */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Dekoratív körök a háttérben */
body::before {
    content: ''; position: absolute; top: -10%; left: -10%; width: 400px; height: 400px;
    background: rgba(255, 255, 255, 0.2); border-radius: 50%;
}
body::after {
    content: ''; position: absolute; bottom: -10%; right: -10%; width: 300px; height: 300px;
    background: rgba(255, 255, 255, 0.2); border-radius: 50%;
}

.auth-card {
    background: white;
    width: 100%;
    max-width: 400px;
    padding: 40px;
    border-radius: 30px; /* Nagyobb kerekítés, mint a képen */
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    text-align: center;
    z-index: 10;
    position: relative;
}

.header-icon {
    font-size: 40px; color: #ff9f43; margin-bottom: 10px;
    border: 2px solid #ff9f43; border-radius: 50%; width: 80px; height: 80px;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px auto;
}

h2 { color: #333; margin-bottom: 5px; font-weight: 600; font-size: 1.8rem; }
p { color: #aaa; font-size: 0.9rem; margin-bottom: 30px; }

.input-group { margin-bottom: 20px; text-align: left; }
.input-group label { display: block; color: #666; font-size: 0.85rem; margin-bottom: 5px; font-weight: 500; }
.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 12px; /* Kerekített inputok */
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
    background: #f9f9f9;
}
.input-group input:focus { border-color: #ff9f43; background: white; box-shadow: 0 0 0 4px rgba(255, 159, 67, 0.1); }

.btn {
    width: 100%;
    padding: 14px;
    background: #ff9f43; /* Gomb színe */
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(255, 159, 67, 0.3);
}
.btn:hover { transform: translateY(-3px); background: #f39c12; box-shadow: 0 15px 25px rgba(255, 159, 67, 0.4); }

.links { margin-top: 20px; font-size: 0.9rem; color: #666; }
.links a { color: #ff9f43; text-decoration: none; font-weight: 600; }
.links a:hover { text-decoration: underline; }

.alert {
    padding: 10px; border-radius: 8px; margin-bottom: 20px; font-size: 0.9rem;
}
.alert-error { background: #fee2e2; color: #ef4444; border: 1px solid #fca5a5; }
.alert-success { background: #dcfce7; color: #22c55e; border: 1px solid #86efac; }

/* Social Icons */
.social-login { margin-top: 25px; display: flex; justify-content: center; gap: 15px; }
.social-btn {
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid #ddd;
    display: flex; align-items: center; justify-content: center;
    color: #555; text-decoration: none; transition: 0.3s;
}
.social-btn:hover { background: #ff9f43; color: white; border-color: #ff9f43; }