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

@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFPRODISPLAYREGULAR.OTF') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFPRODISPLAYBOLD.OTF') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFPRODISPLAYTHINITALIC.OTF') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFPRODISPLAYSEMIBOLDITALIC.OTF') format('opentype');
    font-weight: 700;
    font-style: italic;
}


h1 {
    font-family: 'SF Pro Display';
    font-size: 40px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 2px;
    color: #000000;
}

h2 {
    font-family: 'SF Pro Display';
    font-size: 30px;
    font-weight: 400;
    font-style: italic;
    text-align: center;
    letter-spacing: 2px;
}

h3 {
    font-family: 'SF Pro Display';
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    text-align: center;
    letter-spacing: 2px;
    color: #D1AD3F;
}

h4 {
    font-family: 'SF Pro Display';
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 2px;
    color: #D1AD3F;
}

h5 {
    font-family: 'SF Pro Display';
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
    color: #D1AD3F;
}

p {
    font-family: 'SF Pro Display';
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    text-align: justify;
    letter-spacing: 1px;
}


.containerlogin {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100vh;
}

img {
    width: 100%;
    max-width: 200px;
    margin-bottom: 50px;
}

.containerlogin h1 {
    margin-bottom: 50px;
}

.form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #D6B655;
    border-radius: 18px;
    font-size: 14px;
    font-family: 'SF Pro Display';
    color: #000000;
    width: 100%;
    min-width: 250px;

}

.btn_enviar {
    width: 80%;
    padding: 5px 5px;
    background-color: #ffffff;
    border: 1px solid #D1AD3F;
    border-radius: 18px;
    font-family: 'SF Pro Display', sans-serif;
    font-size: 16px;
    cursor: pointer;
    color: #000000;
}

.btn_enviar:hover {
    background-color: #000000;
    color: #D1AD3F;
    transition: 0.5s ease-in-out;
}

.btn_cadastro {
    padding: 15px 15px;
    border-radius: 18px;
    font-family: 'SF Pro Display', sans-serif;
    font-size: 16px;
    cursor: pointer;
    color: #000000;
    background-color: #ffffff;
    margin-top: 20px;
    border: none;
    transition: 0.5s ease-in-out;
}

.btn_cadastro:hover {
    color: #D1AD3F;

}

.alerta {
    font-family: 'SF Pro Display';
    font-size: 18px;
    padding: 15px;
    background-color: #fadbd8;
    border-radius: 18px;
    color: #000000;
    width: 100%;
    margin-bottom: 10px;
    max-width: 250px;
}