:root {
    --font_family_padrao: 'Roboto', sans-serif;
}
body {
    margin: 0;
    padding: 0;
    max-width: 100dvw;
    min-height: 100dvh;
    background-color: #f2f2f2;
    font-family: 'Montserrat', sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    width: 100%;
    padding: 1rem 0;
    text-align: center;
}
header.header-login {
    margin-top: 7rem;
}
header a, .titulo-infomei {
    font-family: 'Montserrat', sans-serif;
    padding: 1.5rem 0;
    font-size: 2.5rem;
    text-decoration: none;
    color: #004A2B;
}
form {
    width: 100%;
    max-width: 500px;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    margin-top: 0.5rem;
}

form.form-login {
    justify-content: center;
    gap: 2rem !important;
    margin-bottom: 5rem;
}

form.form-definir-senha {
    justify-content: center;
    background: #ffffff;
    padding: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #333333;
    font-family: var(--font_family_padrao);
}

.tipo_empresa {
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    padding: 0.9rem 0;
    scrollbar-width: none;
    width: 90%;
    box-sizing: border-box;
}
.tipo_empresa::-webkit-scrollbar {
    display: none;
}
.tipo_empresa button {
    white-space: nowrap;
    background: rgba(255,255,255,0.08);
    color: #888888;
    border: 2px solid #00B065;
    border-radius: 8px;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s, border 0.2s;
    outline: none;
    font-family: var(--font_family_padrao);
}
.tipo_empresa button.selected {
    background: #00B065;
    color: #fff;
    border: 2px solid #00B065;
}
input[type="text"], input[type="email"], input[type="password"], select {
    /* width: 90%; */
    width: calc(90%);
    max-width: 100%;
    padding: 0.9rem 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.5);
    color: #888888;
    font-size: 1.05rem;
    outline: none;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
    transition: background 0.2s, box-shadow 0.2s;
    font-family: var(--font_family_padrao);
    box-sizing: border-box;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, select:focus {
    background: rgba(255,255,255,0.18);
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);
    font-family: var(--font_family_padrao);
}
::placeholder {
    color: #ccc;
    opacity: 0.85;
}
button[type="submit"] {
    margin-top: 1rem;
    width: 90%;
    /* background: #00B065; */
    background: linear-gradient(90deg, #00B065 10%, #004A2B 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.9rem 0.75rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
    font-family: var(--font_family_padrao);
}
button[type="submit"]:hover {
    background: #008c4a;
}
.campo-password-login {
    position: relative;
    width: 90%;
    max-width: 90%;
    justify-content: center;
}
.campo-password-login input[type="password"] {
    width: 100%;
    /* padding-right: 3rem; */
}
.esqueci-minha-senha {
    padding-left: 0.3rem;
    top: 50%;
    color: #c2c2c2;
    font-size: 0.7rem;
    text-decoration: none;
    font-family: var(--font_family_padrao);
}
.esqueci-minha-senha:hover {
    color: #008c4a;
}

.criar-conta {
    color: #888888;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: var(--font_family_padrao);
}
.criar-conta:hover {
    color: #00B065;
}


.entrar-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 70%;
    max-width: 100%;
    padding: 0.9rem 0.75rem;
    background: rgba(255, 255, 255);
    color: #888888;
    border-radius: 8px;
    font-size: .8rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-family: var(--font_family_padrao);
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
}

.popup_negocio {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup_negocio.hidden {
    display: none;
}

.popup_negocio_container {
    background: #ffffff;
    border-radius: 12px;
    padding: 1rem;
    width: 90%;
    max-width: 360px;
    max-height: 70%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.popup_negocio_container h2 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
    text-align: center;
    font-family: var(--font_family_padrao);
    font-weight: 400; /* traço fino */
    letter-spacing: 0.3px;
}

.popup_negocio_container button.opcao {
    background: #eeeeee;
    border: none;
    color: #333333;
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.popup_negocio_container button.opcao:hover {
    background-color: #dddddd;
}

.form-group {
    position: relative;
}

.form-group {
    width: 90%;
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.6rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
    color: #9c9c9c;
}
