*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: "Poppins", sans-serif;
}

body{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
}

.container{
    width:320px;
    height:650px;

     background-image:url("../Fotos/bg-favela.png");
    background-size:cover;
    background-position:center;

    padding:20px;
}

.card{
    height:520px;

    background:rgba(255,255,255,0.7);
    border-radius:8px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.logo{
    width:120px;
    margin-bottom:15px;
}

.card h3{
    margin-bottom:25px;
    font-size:18px;
}

.perfil{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;

    box-shadow:0 0 10px rgba(0,0,0,0.4);
}

.botoes{
    display:flex;
    justify-content:space-between;
    margin-top:20px;
}

.botoes a{
    width:120px;
    padding:10px;
    border:none;
    border-radius:4px;
    background:#007bff;
    color:white;
    text-decoration:none;
    text-align:center;
    cursor:pointer;
}

.botoes a:hover{
    background:#005ecb;
}

/* Tablet */
@media (max-width: 768px){

    .container{
        width: 90%;
        max-width: 450px;
        height: auto;
        min-height: 100vh;
    }

    .card{
        height: 75vh;
    }

    .logo{
        width: 100px;
    }

    .card h3{
        font-size: 1.2rem;
        text-align: center;
    }

    .botoes button{
        width: 45%;
    }
}

/* Celular */
@media (max-width: 480px){

    .container{
        width: 100%;
        min-height: 100vh;
        padding: 15px;
    }

    .card{
        height: 75vh;
    }

    .logo{
        width: 90px;
    }

    .card h3{
        font-size: 1rem;
        text-align: center;
    }

    .botoes{
        gap: 10px;
    }

    .botoes button{
        width: 100%;
        padding: 12px;
        font-size: 0.9rem;
    }
} 