body {
    background-color: #FFFFFF;
}

a {
    color: #FFF;
    text-decoration: none;
}

.login-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-modal .form {
    width: calc(100% - 20px);
    max-width: 535px;
}

.login-modal .form .logo {
    display: block;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

/* .login-modal .form .logo svg {
    display: block;
    width: 100%;
    max-width: 260px;
} */


.logo {
    width: 100%;
    /* Ajusta a largura do contêiner ao tamanho da tela */
    /* max-width: 500px; */
    /* Define uma largura máxima se desejar */
}

.logo svg {
    width: 50%;
    /* Ajusta o SVG para ocupar toda a largura do contêiner */
    height: auto;
    /* Mantém a proporção do SVG */
}



.login-modal .form .title {
    background: #FF6A39;
    font-size: 30px;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 15px 30px;
    margin: 0;
    /* border-radius: 6px 6px 0 0; */
}

.login-modal .form .title .icon {
    display: inline-block;
    width: 40px;
    margin-right: 20px;
}

.login-modal .form .title .icon svg {
    display: block;
    width: 100%;
}

.login-modal .form form {
    padding: 0 30px;
    border: 2px solid #ff7d59;
    /* border-radius: 0 0 6px 6px; */
    background-color: #FFF;
}

/* regra base do input */
.login-modal .form form input {
    width: 100%;
    margin-top: 50px;

    border: none;
    border-bottom: 2px solid #ff7d59;
    border-left: 4px solid #ff7d59;
    padding: 0 38px 5px 10px;
    /* folga se tiver o ícone do olho */
    outline: none;

    background: transparent !important;
    /* remove o fundo */
    color: #ff7d59;
    caret-color: #ff7d59;

    box-shadow: none;
    /* tira “cinzinha” interna */
    -webkit-appearance: none;
    appearance: none;
}

/* remove o fundo do AUTOPREENCHIMENTO (Chrome/Edge/Safari) */
.login-modal .form form input:-webkit-autofill,
.login-modal .form form input:-webkit-autofill:hover,
.login-modal .form form input:-webkit-autofill:focus{
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: #FF6A39 !important; /* mantém o texto visível */
  transition: background-color 50000s ease-in-out 0s; /* hack extra/fallback */
}

/* opcional: Firefox */
.login-modal .form form input:-moz-autofill{
  box-shadow: 0 0 0 1000px transparent inset !important;
  -moz-text-fill-color: #FFF !important;
}


.login-modal .form form .contaner-content {
    justify-content: space-between;
    margin: 10px 0;
}

.login-modal .form form .contaner-content .button {
    padding: 6px 35px;
    font-size: 18px;
    font-weight: 700;
    /* border-radius: 18px; */
    background: #FF6A39;
    color: #FFFFFF;
    border: none;
    text-transform: uppercase;
    transition: all 0.8s ease;
    outline: none;
}

.login-modal .form form .contaner-content .button:hover {
    background: #ff7d59;
    color: #FFF;
}

.login-modal .form form .contaner-content a {
    font-weight: 500;
}

.loader {
    width: 45px;
    opacity: 0;
    visibility: hidden;
    position: relative;
    z-index: 2000;
    color: #6B6B6D;
    right: 0;
    /* top          : 36px; */
    /* left         : 8px; */
}

.loader.on {
    opacity: 1;
    visibility: visible;
}

.form-login {
    position: relative;
}

.custom-login {
    position: relative;
    width: 100%;
}

.custom-login-input {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 10px 100px 10px 20px;
    line-height: 1;
    box-sizing: border-box;
    outline: none;
    height: 44px;
}