/* Login/Register oldal stílusok */

.login-card, .register-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 40px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    margin: 2rem auto;
}

.login-logo {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 20px;
}

.login-title, .register-title {
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.oauth-btn {
    display: block;
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.facebook-btn {
    background: #1877f2;
    color: white;
}

.facebook-btn:hover {
    background: #166fe5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.google-btn {
    background: #fff;
    color: #333;
    border: 2px solid #ddd;
}

.google-btn:hover {
    background: #f8f9fa;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.oauth-icon {
    margin-right: 10px;
    font-size: 18px;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}

.back-home {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.back-home a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.back-home a:hover {
    text-decoration: underline;
}

.login-info {
    background: #e3f2fd;
    color: #0d47a1;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.5;
}
