*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Inter,sans-serif;
    background:#ffffff;
    color:#1f2937;
}

.container{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
}

.card{

    width:480px;
    background:white;

    border:1px solid #e5e7eb;

    border-radius:14px;

    padding:55px 45px;

    text-align:center;

    box-shadow:0 8px 30px rgba(0,0,0,.06);
}

.logo{

    width:90px;
    margin-bottom:25px;
}

h1{

    font-size:30px;
    font-weight:600;

    margin-bottom:12px;
}

p{

    color:#6b7280;

    line-height:1.6;

    margin-bottom:35px;
}

.download{

    display:inline-flex;

    align-items:center;
    gap:10px;

    background:#0057d8;

    color:white;

    text-decoration:none;

    padding:15px 32px;

    border-radius:10px;

    font-weight:600;

    transition:.15s;
}

.download:hover{

    background:#0049b8;
}
