/* ===== Estilos login para red de amigos ===== */
body {
    background: url('<?php echo APP_URL;?>/public/images/network-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-box {
    background-color: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.2);
    width: 350px;
    text-align: center;
}

.login-box img {
    margin-bottom: 20px;
}

.btn-primary {
    background: #4CAF50;
    border: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #45A049;
}