body{
    background-color: #2f2f2f;
}

main{
    background-color: white;
    max-width: 1000px;
    margin: 0px 20px;
    border: 1px solid black;
    margin-top: 50px;
    padding: 20px;
}

.logo-container{
    margin-top: 20px;
}

.form-group.required > label:after {
    content: ' *';
    color: red;
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #2f2f2f;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-secondary {
    color: #fff;
    background-color: #d82027;
    border-color: #d82027;
}

.form-group .help-block{
    color: #d82027;
}

input[type=checkbox]{
    margin-right: 10px;
}

@media screen and (min-width: 700px) {
    main{
        width: 600px;
    }
}

@media screen and (min-width: 900px) {
    main{
        width: 800px;
    }
}

@media screen and (min-width: 1100px) {
    main{
        width: 1000px;
    }
}

.link-download{
    text-decoration: none;
}

.text-secondary{
    color: #d82027 !important;
}

.loader{
    position: fixed;
    top:0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #2f2f2f;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader svg {
    animation: rotate 1s linear infinite;
    width: 50px;
    height: 50px;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}