@charset "UTF-8";

.registration-methods {
    padding: 64px 2vw;
}

.registration-methods .col {
    width: 47vw;
    float: left;
    margin-bottom: 64px;
}

.registration-methods .col.right {
    text-align: center;
}

.registration-methods .image {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    width: 40vw;
    height: 30vw;
    background-color: #333333;
}

.registration-methods .image img {
    position: absolute;
    width: auto;
    height: auto;
    /* min-width: 100%;
    min-height: 100%; */
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}

.registration-methods h2 {
    font-weight: normal;
    color: #2b2b2b;
    font-size: 28px;
    margin-bottom: 48px;
}

.registration-methods p {
    color: #777777;
    font-size: 14px;
    line-height: normal;
    margin-top: 32px;
}

.registration-methods .button {
    display: inline-block;
    margin: 10px 0;
    background-color: #51d1da;
    border: 2px solid #51d1da;
    color: #ffffff;
    border-radius: 100px;
    text-decoration: none;
    padding: 14px 37px 12px;
    font-weight: bold;
}

.registration-methods .button:hover {
    background-color: #ffffff;
    color: #51d1da;
}

.registration-methods .button.facebook {
    background-color: rgb(59, 89, 152);
    border: 2px solid rgb(59, 89, 152);
}

.registration-methods .button.facebook:hover {
    background-color: #ffffff;
    color: rgb(59, 89, 152);
}


@media (max-width: 1050px) {
    .registration-methods .col {
        float: none;
        width: 100%;
    }
    
    .registration-methods .image {
        width: 80vw;
        height: 60vw;
    }
}