/********** CADASTRO ********/
* {
    margin: 0;      
    box-sizing: border-box; 
    font-family: 'Poppins', sans-serif;
}

body {
    background-image: url('./img/milad-fakurian-seA-FPPXL-M-unsplash.jpg');
    background-size: 100%; 
}


#cadastro {    
    background-color: rgba(5, 53, 143, 0.418);
    width: 500px;
    margin-top: 20vh;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 70px;      
    border-radius: 10px;
    text-align: center;   
}

a {
    color: rgb(255, 255, 255);
}

a:hover {
    color: #8e09db;
}

fieldset {
    border: none;
}

h4 {
    margin-bottom: 25px;
    font-size: 24px;    
    margin-bottom: 30px;    
}

textarea:focus, input:focus {
    outline: none;
}

form {
    margin-top: 30px;
    margin-bottom: 40px;    
}

.form-control label {
    display: inline-block;
    margin-bottom: 5px;
    color: #828CAD;
}

.form-control input {
    border: 2px solid #3E445B;
    border-radius: 15px;
    outline: 0;
    display: block;
    font-size: 14px;
    width: 100%;
    padding: 15px;
}

label {
    display: block;
    width: 100%;
    text-align: left;
}

input {
    width: 100%;
    border: none;
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 15px; 
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.336);
}

button {
    padding: 10px;
    margin-bottom: 15px;
    margin-top: 60px;
    width: 100%;
    font-size: .8rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    height: 40px;
    border-radius: 20px;
    color: black;
    background-color: white;
    cursor: pointer;    
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.452) ;
}

button:hover {
    background-color: rgba(0, 0, 0, 0.767);
    transition: .5s;
    color: white;
}

.list-social-media {
display: flex;
}

.item-social-media {    
border-radius: 50%;
display: inline;
width: auto;
font-size: 18px;
text-align: center;
width: 35px;
height: 35px;
line-height: 35px;
margin-left: 45px;
margin-bottom: 15px;
}

.description {
margin-bottom: 15px;
font-size: 13px;
opacity: 200;
}

h4, p, #cadastro, #inputs {
    color: white;
}

.form-control.success input {
    border: 3px solid #4ECA64;
}

.form-control.error input {
    border: 3px solid #c41717;
}

#error-nome {
    color: #c41717;
    font-size: 14px;
}

#error-email {
    font-size: 14px;
    color: #c41717;
}

#error-senha {
    font-size: 14px;
    color: #c41717;
}