* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

button {
    cursor: pointer;
}

body > header {
    background-color: #353945;
    color: #fff;
    padding: 10px 12px 10px;
    background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(16, 180, 65, 0.411) 70%);
}




.header-logo {
   
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    padding: 0 24px;
    min-height: 10px;
}

.header-logo img {
   width: 150px;
}

.form-section {
    padding: 26px 32px 28px;
}

.form-section h2 {
    font-size: 18px;
    font-weight: 600;
    color: #27272e;
}


.form-section__header {
    gap: 12px;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
    text-align: center;
}

.form-section form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.form-section form > div {
    display: flex;
    flex-direction: column;
}

.form-section form label {
    font-size: 14px;
    font-weight: 500;
    color: #425466;
    margin-bottom: 8px;
}

.form-section form input {
    background-color: #edf2f7;
    border-radius: 6px;
    padding: 10px 10px 10px 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    color: #7a828a;
    border: none;
}

.form-section__reset-password {
    display: inline-block;
    margin-left: auto;
    text-decoration: none;
    margin-top: 9px;
    color: #777e90;
    font-size: 13px;
    line-height: 12px;
}

.form-section__acessar {
    border-radius: 90px;
    background-color: #2e8b46;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 312px;
    border: none;
    height: 38px;
    margin: 0 auto;
}

.form-section__cancelar {
    border-radius: 90px;
    background-color: #ffffff;
    color: #030303;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 312px;
    border: 1px solid #2e8b46;
    height: 38px;
    margin: 0 auto;
}

.form-login a {
    text-decoration: none;
}

.social-media-login__title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}  

.social-media-login__title span {
    background-color: #edf2f7;
    height: 1px;
    width: 57px;

}  


.social-media-login__title p {
  font-size: 12px;
  font-weight: 500;
  color: #718096;  
  text-align: center;
}

.social-media-login__action {
    border-radius: 50%;
    border: 1px solid #c8f0b5;
    padding: 10px;
    background-color: #2e8b452c;
    height: 42px;
    width: 42px;
    margin-bottom: 8px;
}

.social-media-login__container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-media-login__criar {
    color: #718096;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    padding: 10px;
}

.social-media-login__criar a {
    color: #141416;
    text-decoration: none;
}

.select-cliente {
    padding: 10px;
    border: 1px solid rgb(236, 243, 236);
    font-size: 16px;
}

.alert {
    
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
    font-size: 13px;
    font-weight: 500;
    align-items: center;
}

.alert-erro {
    border: 1px solid #dc3545;
    color: #721c24;
    border-left: 5px solid #dc3545;

}

.alert-success {
    border: 1px solid #01a51c;
    color: #003304;
    border-left: 5px solid #01a51c;
}

.alert-warning {
    border: 1px solid #ffc107;
    color: #856404;
    border-left: 5px solid #ffc107;
}

.alert-info {
    border: 1px solid #17a2b8;
    color: #0c5460;
    border-left: 5px solid #17a2b8;
}


@media (min-width:868px) {
    form {
 
        width: 400px;        
    }

    .alert-erro, .alert-success, .alert-warning, .alert-info {
        width: 400px;
    }
}


/* linha com "manter conectado" (esq) e "esqueceu a senha?" (dir) */
.senha-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 8px;
}

/* sobrescreve o label padrão do formulário para ficar igual ao link */
.form-section form label.senha-remember {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 0;                  /* remove margin-bottom herdada do label padrão */
  font-size: 13px;            /* igual ao .form-section__reset-password */
  font-weight: 400;
  line-height: 12px;          /* igual ao .form-section__reset-password */
  color: #777e90;             /* igual ao .form-section__reset-password */
}

/* checkbox com cor do tema (opcional) */
.senha-remember input[type="checkbox"] {
  accent-color: #2e8b46;
}

/* zera margens do link no layout em linha */
.senha-options .form-section__reset-password {
  margin: 0;
}
