/* Google Font Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins" , sans-serif;
}

body{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #20630E;
}

/*FORM LOGIN*/
.container{
    position: relative;
    max-width: 430px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 0 20px;
}

.container .forms{
    padding: 30px;
    background-color: #fff;
    transition: margin-left 0.18s ease;
}

.container .forms .title{
    position: relative;
    font-size: 27px;
    font-weight: 600;
}

.subtitle{
    position: relative;
    font-size: 16px;
    font-weight: 300;
    margin-top: 20px;
}

.forms .title::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 30px;
    background-color: #20630E;
    border-radius: 25px;
}

.forms .input-field{
    position: relative;
    height: 50px;
    width: 100%;
    margin-top: 30px;
}

.forms .select-field {
    width: 100%;
    margin-top: 30px;

}

.select-field select{
    width: 100%;
    font-size: 16px;
    border: none;
    outline: none;
    border-bottom: 2px solid #ccc;
    border-top: 2px solid transparent;
    transition: all 0.2s ease;
    color: #787878;
}

.input-field input{
    position: absolute;
    height: 100%;
    width: 100%;
    padding: 0 35px;
    border: none;
    outline: none;
    font-size: 16px;
    border-bottom: 2px solid #ccc;
    border-top: 2px solid transparent;
    transition: all 0.2s ease;
}

.input-field input:is(:focus, :valid){
    border-bottom-color: #20630E;
}

.input-field i{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 23px;
    transition: all 0.2s ease;
}

.input-field input:is(:focus, :valid) ~ i{
    color: #20630E;
}

.input-field i.icon{
    left: 0;
}
.input-field i.showHidePw{
    right: 0;
    cursor: pointer;
    padding: 10px;
}

.forms .checkbox-text{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.checkbox-text .checkbox-content{
    display: flex;
    align-items: center;
}

.checkbox-content input{
    margin: 0 8px -2px 4px;
    accent-color: #20630E;
}

.forms .text{
    color: #333;
    font-size: 14px;
}

.forms a.text{
    color: #20630E7;
    text-decoration: none;
}

.forms a.signup-link{
    color: #20630E;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
}

.forms a:hover{
    text-decoration: underline;
}

.forms button{
    margin-top: 35px;
}

.forms button{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    max-width: 400px;
    width: 100%;
    border: none;
    outline: none;
    color: #fff;
    border-radius: 5px;
    margin: 25px 0;
    font-size: 17px;
    font-weight: 500;
    background-color: #20630E;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover{
    background-color: #399f18;
}

.forms .login-signup{
    margin-top: 30px;
    text-align: center;
}

/*OPTIN PAGE*/
.optin_page_content {
    margin: 10px;
    text-align: center;
}

.optin_page_content img {
    width: 400px;
    max-width: 100%;
}

.optin-link {
    margin: 30px;
}

.optin_page_content a {
    color: #913f39;
    text-decoration: none;
}

.optin_page_content a:hover{
    text-decoration: underline;
}

.container .not_found_header {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
}

.container .not_found_header .error{
    font-size: 3em;
    font-weight: 100;
    text-align: center;
    margin-top: 40px;

}

.container .not_found_header h1{
    font-size: 1.5em;
    text-align: center;
    margin: 0 5px;
}

.container .not_found_header p{
    font-size: 1em;
    text-align: center;
    margin: 10px 20px 40px;
}

/*TERMS PAGE*/
.terms_page_header {
    text-align: center;
    padding: 50px 40px;
}

.terms_page_header h1 {
    font-size: 2em;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
}

.terms_page_header p {
    margin-top: 10px;
    color: rgba(0, 0, 0, 0.4);
}

.terms_page_content {
    margin: 10px 10px;
    padding-left: 3px;
}

/*FOOTER*/
footer {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
}

/* ERRO STYLE */
.not_found {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
}

.error_content {
    text-align: center;
    max-width: 600px;
    margin: 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.not_found_header {
    margin-bottom: 20px;
}

.error_cod {
    font-size: 2rem;
    color: #dc3545; /* Cor vermelha para erro */
    margin-bottom: 10px;
}