@import '/static/css/frontend/theme.css';

/*

    BASE LAYOUT CSS

*/

* {
    font-family: 'Roboto', 'Arial', sans-serif;
    font-weight: 200;
    box-sizing: border-box;
    font-size: 14px;
}

body {
    /* background-image: linear-gradient(to bottom, #eaeaea, rgb(240, 240, 240)); */
    background-image: url('../img/bright_squares.png');
    background-repeat: repeat;
}

body > .main {
    min-width: 500px;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    border-top: 3px solid var(--color-primary) !important;
}

.main * {
    max-width: 500px;
}

.form-label {
    color: #555;
    font-weight: 400;
}

@media (max-width: 500px) {
    body > .main {
        min-width: 90%;
    }
}


/*

    FORM VALIDATION

*/

.required:after {
    content:" *";
    color: #df4949;
}

ul li {
    list-style-type: none;
}

ul.errorlist {
    margin: 0 !important;
    background-color: #ffc8c8;
    padding: 5px;
    border-radius: .25rem;
}