html,
body {
    height: 100%;
}

body {
    display: flex;
    align-items: center;
    margin: 0;
    background-image: url("bg.png");
    /* The image used */
    background-color: #1e79bd;
    /* Used if the image is unavailable */
    height: 500px;
    /* You must set a specified height */
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Do not repeat the image */
    background-size: cover;
    /* Resize the background image to cover the entire container */
}

.title {
    font-size: 1.8rem;
    font-weight: 500;
}

.sub-title {
    font-size: 1.1rem;
    font-weight: 500;
}

.content {
    display: block;
    margin-top: 10px !important;
    margin: auto;
}

.form-cadastro {
    background-color: white;
    min-width: 300px;
    padding: 30px;
    margin: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.label-vagas {
    font-size: 15px;
    font-weight: 500;
}

.label-numero {
    font-size: 20px;
    font-weight: 400;
}


/* Extra small devices (phones, 600px and down) */

@media only screen and (max-width: 600px) {}


/* Small devices (portrait tablets and large phones, 600px and up) */

@media only screen and (min-width: 600px) {}


/* Medium devices (landscape tablets, 768px and up) */

@media only screen and (min-width: 768px) {}


/* Large devices (laptops/desktops, 992px and up) */

@media only screen and (min-width: 992px) {}


/* Extra large devices (large laptops and desktops, 1200px and up) */

@media (min-width: 1200px) {}