* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: lighter;
    font-family: 'Flex', sans-serif;
}

body {
    background-color: #0e0e0e;
    color: #fff;
    height: 100%;
}

a {
    text-decoration: none;
    color: #fff;
}

#container {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.4);
}

#content {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    padding: 30px 80px;
    box-shadow: -5px 10px 50px #000;
}

/* BACKGROUND */

.background-clip {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    filter: blur(5px);
}

/* CABEÇALHO */

header {
    text-align: center;
    margin-bottom: 40px;
}

header a {
    display: inline-block;
    height: 120px;
    width: 200px;
    background-image: url(../view/img/logoNoback.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 200px;
    transition: 0.1s;
}

header a:hover {
    background-position-y: -45px;
    box-shadow: 1px 1px 1000px rgba(255, 255, 255, 0.1);
    transition: 0.1s;
}

header h1 {
    font-size: 50px;
}

/* FORMULARIO */

#form {
    width: 315px;
}

#form div {
    margin-bottom: 20px;
}

label {
    display: block;
}

input {
    display: block;
    width: 100%;
    height: 40px;
    padding: 0 20px;
    background: rgba(0, 0, 0, 0);
    border: 1px solid #545454;
    border-radius: 20px;
    color: #fff;
    transition: 0.1s;
}

input:hover {
    box-shadow: 2px 10px 100px rgba(255, 255, 255, 0.3);
    transition: 0.1s;
}

input::placeholder {
    font-family: "Roboto Mono", monospace;
    color: #545454;
}

.custom-date input {
    cursor: pointer;
}

::-webkit-calendar-picker-indicator{
    background-color: #fff;
    border-radius: 3px;
    cursor: pointer;
}

.custom-password {
    position: relative;
}

.custom-password input {
    line-height: 40px;
    outline: 0;
    font-size: 20px;
    padding: 0px 50px 0px 20px;
}

.custom-password i{
    font-size: 20px;
    cursor: pointer;

    position: absolute;
    bottom: 8px;
    right: 5%;
    color: white;
}

.custom-terms input {
    display: none;
}

.custom-terms input + label::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background-color: #0e0e0e;
    border: 1px solid #545454;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    margin-bottom: 3px;
    cursor: pointer;
}

.custom-terms input:checked + label:before{background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 10 10'%3E%3Cg class='nc-icon-wrapper' stroke-width='1' fill='%23555555'%3E%3Cpath fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' data-cap='butt' d='M2.83 4.72l1.58 1.58 2.83-2.83'/%3E%3C/g%3E%3C/svg%3E");
    background-color: #ff5757;
    background-position: center;
    border: none;
    padding: 1px;
}

.custom-submit {
    text-align: center;
}

.custom-submit input {
    background-color: #ff5757;
    border: 0;
    color: #fff;
    cursor: pointer;
    margin-bottom: 10px;
    font-size: 18px;
    transition: 0.1s;
}

.custom-submit input:hover {
    background-color: #ff3131;
    font-weight: bold;
    transition: 0.1s;
}

.custom-submit span {
    font-size: 16px;
}

.custom-submit a {
    color: #ff5757;
}

.custom-submit a:hover {
    color: #ff3131;
}

body.waiting {
    cursor: progress;
}