

/* START CSS TRICKS */
a,
a:hover {
    transition: all 0.2s ease;
    text-decoration: none;
    text-transform: none;
}

input:focus,
input:active,
button:focus,
button:active {
    outline: none;
}

input,
textarea,
keygen,
select,
button {
    font-weight: 300;
}

img {
    object-position: center;
    object-fit: cover;
}

/* END CSS TRICKS */


body {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    background-color: #060606;
    
    padding-top: 60px;
    padding-bottom: 60px;
}



.logo {
    height: 40px;
    margin-bottom: 60px;
}

/* START BUTTONS */

.button-group {
    margin-bottom: 40px;
}

.button-group span {
    margin-top: 15px;
    font-size: 16px;
    text-align: center;
    color: #777;
}


.btn {
    padding: 15px 65px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    cursor: pointer;
    border-radius: 0;
    min-width: 290px;
    
}

.btn:hover {
    color: #fff;
    background: linear-gradient(-90deg, #BA587B 0%, #591129 100%);
    border: 2px solid rgba(255, 255, 255, .0);
}



/* END BUTTONS */