*{
    margin: 0;
    border: 0;
    box-sizing: border-box;
}

html{
    height: 2000px;
}

section{
    width: 100%;
    height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    position: relative;
}

h1,h2, h3{
    font-weight: 700;
    text-align: center;
}

h1{
    position: absolute;
    font-size: clamp(24px, 5vw, 50px);
    text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    top: 15%;
}

h2{
    position: absolute;
    font-size: clamp(20px, 1.5vw, 64px);
    text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    top: 25%;
}

h3{
    position: absolute;
    font-size: clamp(20px, 1.5vw, 64px);
    text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}


body {
    background: linear-gradient(to right, #63a9ff, #3494ff);
    min-height: 100vh;
}

#space{
    height:15vh;
}
.campoGeral {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    /*background-color: #000000;*/
    display: flex;
    justify-content: center;
    align-items: center;
}

#subCampo {
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    /*background-color: #995757;*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.areaDaFoto {
    width: 200px;
    height: 200px;
    position: relative;
    margin-bottom: -15px;
    /*background-color: #63a9ff;*/
}

.fotoPerfil {
    background: url(../assets/img/fotoPerfil.png);
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


.fotoDePerfil {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.botaoDeUpload {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.39);
    border-radius: 10%;
    border: 1px solid #d0e1f9;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 300;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.formularioInfo {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 35px;
}

/*.campoInfo {

}*/
.campoInfoInput {
    background: rgba(255, 255, 255, 0.39);
    border: 1px solid #ffffff;
    height: 100%;
    width: 100%;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: #000000;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    cursor: pointer;
}

input .campoInfoInput{
    color: #000;
}

.linha {
    display: flex;
    gap: 15px;
}

.linha .campoInfo {
    flex: 1;
}

input::placeholder {
    color: rgb(255, 255, 255); 
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #8EC2FF inset !important;
    -webkit-text-fill-color: #000000 !important; 
}