
body {
    background-color: #f2f2f2;
    font-family: 'Roboto', sans-serif;
}

.wrapper {
    background-color: #ffffff;
    text-align: center;
    border: 1px solid #d2d2d2;
    border-radius: 8px;
    padding: 30px;
}

@media only screen and (min-device-width: 1281px) {
    .wrapper {
        margin: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 40%;
    }
}


.btn {
    padding: 12px;
    padding-left: 30px;
    padding-right: 30px;
    display: inline-block;
    text-align: center;
    background-color: #7232D9;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
}
.btn:hover {
    background-color: #3C1A73;
}
.btn.default {
    background-color: #d2d2d2;
    color: initial;
}

.secret {
    border-top: 1px solid #d2d2d2;
    border-bottom: 1px solid #d2d2d2;
    padding: 24px;
}
.secret > p {
    margin: 0;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
}
.secret > span {
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
}
.secret a {
    text-decoration: none;
    color: #7232D9;
    margin-left: 10px;
}
@media only screen and (max-device-width: 1281px) {
    .secret a {
        display: block;
        margin-top: 3px;
        margin-left: 0;
    }
}


.labeled-input {
    width: 90%;
}
@media only screen and (min-device-width: 1281px) {
    .labeled-input {
        width: 50% !important;
    }
}