@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

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

body{
    font-family:'Montserrat',sans-serif;
    background:#7D8A89;
    color:#FFFFFF;
}

.container{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:34px 28px;
    text-align:center;
}

.logo{
    font-size:44px;
    font-weight:800;
    letter-spacing:-1px;
    margin-bottom:56px;
    line-height:1;
    white-space:nowrap;
}

.logo .better{
    color:#252525;
    font-style:italic;
    font-weight:500;
}

.logo .within{
    color:#FFFFFF;
    font-weight:800;
}

h1{
    font-size:36px;
    line-height:1;
    margin-bottom:25px;
    font-weight:800;
}

.subtitle{
    max-width:420px;
    line-height:1.8;
    opacity:.9;
    margin-bottom:40px;
    font-size:17px;
}

.primary-btn{
    width:100%;
    max-width:340px;
    background:#FFFFFF;
    color:#111111;
    border:none;
    border-radius:50px;
    padding:18px;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    margin-bottom:15px;
}

.secondary-btn{
    width:100%;
    max-width:340px;
    background:transparent;
    color:white;
    border:2px solid rgba(255,255,255,.45);
    border-radius:50px;
    padding:18px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
}

.signin{
    margin-top:25px;
    opacity:.8;
    font-size:14px;
}

.signin a{
    color:#FFFFFF;
    font-weight:700;
    text-decoration:none;
}