@import "reset.css";
@import "bootstrap-grid.css";

/*
    @Variaveis globais
 */

body,html {
    min-height: 100vh;
}

body {
    background: url("../imagens/bg.png") repeat, #341948;
    font-family: 'Ubuntu', sans-serif;
    color: #000000;
}

/* Flex */
.d-flex {
    display: flex;
}

.h-100 {
    height: 100%;
}

.clearfix {
    clear: both;
    display: block;
    width: 100%;
}

/* Padding */
.p-40 {
    padding: 40px 0;
}

/* Logo */
.logo, .logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Subtitulo */
.subtitulo h1 {
    width: 100%;
    display: block;

    font-size: 24px;
    color: #fff;
    font-weight: 700;
    text-align: center;

    margin: 20px 0;
}

.subtitulo h1 b {
    color: #8bc000;
}

/* Slider */
.slider {
    margin: 20px 0 0 0;
}

.slider ul, li {
    width: 100%;

    position: relative;
}

.slider ul li img {
    width: 100%;
    object-fit: fill;
}

/* Boxer */
.boxer {
    background-color: #fff;

    width: 100%;
    height: auto;

    padding: 20px;

    border-radius: 20px;
}

.boxer .form-control label {
    width: 100%;

    font-weight: bold;
    font-size: 18px;

    margin-left: 20px;
}

.boxer .form-control input[type="text"],  .boxer .form-control select{
    width: 100%;
    height: 50px;

    border-radius: 10px;
    border: 2px solid #e4e4e4;

    text-indent: 20px;
    font-size: 14px;
    color: #5b5b5b;

    margin: 10px 0 20px 0;
}

.boxer .form-control input[type="submit"] {
    background-color: #8bc000;

    width: 100%;
    padding: 12px 0;

    font-size: 26px;
    font-weight: bold;
    text-align: center;
    color: #fff;

    margin: 0 0 20px 0;
    border-radius: 40px;
}

/* Footer */
footer h1 {
    width: 100%;
    display: block;

    font-size: 20px;
    color: #fff;
    font-weight: 700;
    text-align: center;

    margin: 30px 0 20px 0;
}

footer img {
    width: 100%;
    object-fit: contain;

    margin: 0 0 20px 0;
}

/* Alert */
.alert{
    position:relative;
    padding:15px;
    margin: 10px 0;
    border:1px solid transparent;
    font-size: 16px;
    border-radius:40px;
}

.alert-success{
    color:#155724;
    background-color:#d4edda;
    border-color:#c3e6cb;
}
