*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    min-height:100vh;

    background:
        radial-gradient(circle at 100% 90%,
        #ffd84d 0%,
        #ffe27a 20%,
        #ffffff 40%);
    display:flex;
    justify-content:center;
    align-items:center;

    padding:20px;
}

.container{
    width:100%;
    max-width:700px;
    text-align:center;
}

.logo{
    width:100%;
    max-width:420px;
}

.subtitle{
    margin-top:15px;
    color:#1e2b4a;
    font-size:1.2rem;
    line-height:1.5;
}

main{
    margin-top:50px;
}

.action-btn{
    width:100%;
    border:none;
    border-radius:30px;

    padding:28px;

    display:flex;
    align-items:center;
    gap:25px;

    cursor:pointer;

    font-size:1.7rem;
    font-weight:700;

    transition:.3s;
    margin-bottom:30px;

    box-shadow:
        0 12px 30px rgba(0,0,0,.15);
}

.action-btn:hover{
    transform:translateY(-4px);
}

.buscar{
    background:#072f73;
    color:white;
}

.cadastrar{
    background:#ffbe00;
    color:#072f73;
}

.action-btn i{
    font-size:2.4rem;
    width:50px;
}

footer{
    margin-top:60px;
    color:#444;
    font-size:.95rem;
}

@media(max-width:768px){

    .logo{
        max-width:320px;
    }

    .subtitle{
        font-size:1rem;
    }

    .action-btn{
        font-size:1.2rem;
        padding:22px;
    }

    .action-btn i{
        font-size:2rem;
    }
}