@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    list-style: none;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

body {
    margin: 0;
    overflow-x: hidden;
}

/***********************************************************************************************/
/* Slider */
/***********************************************************************************************/

.hero-slider {
    max-width: 100vw;
    height: 700px;
    margin: auto;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slider .hero-list {
    position: absolute;
    width: max-content;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    transition: 1s;
}

.hero-slider::-webkit-scrollbar {
    display: none;
}

.hero-slider .hero-list img {
    width: 3000px;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
    filter: brightness(55%);
}

.hero-slider .hero-buttons button {
    background-color: transparent;
}

.hero-slider .hero-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    z-index: 3;
}

.hero-slider .hero-dots li {
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
}

.hero-slider .hero-dots li.active {
    width: 30px;
}

/***********************************************************************************************/
/* Login */
/***********************************************************************************************/

.login-section {
    width: 850px;
    padding: 2.5rem 5rem 4rem 6rem;
    backdrop-filter: blur(25px);
    border-radius: 10px;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
    z-index: 20;
}

.login-form-container h2 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-size: 26px;
}

.input-group {
    position: relative;
    margin-bottom: 1.5em;
    width: 100%;
}

.input_field {
    width: 100%;
    height: 50px;
    font-size: 14px;
    padding: 12px 10px 0 10px;
    border: none;
    border-bottom: 2px solid #dfdfdf;
    border-radius: 10px;
    outline: none;
    background: white; /* <- alterado */
    color: black;      /* <- alterado */
}

/* Label flutuante */
.floating-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    color: #9e9e9e;
    font-size: 14px;
    pointer-events: none;
    transition: 0.2s ease all;
}

.input_field:focus + .floating-label,
.input_field:valid + .floating-label {
    top: -8px;
    font-size: 11px;
    color: #3498db;
    transform: none; /* Remove translateY para posicionar corretamente acima */
}

/* Campo de senha com olho */
.password-container {
    position: relative;
    width: 100%;
}

.password-container .input_field {
    padding-right: 40px;
}

.password-container i {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #666;
    z-index: 2;
}

.submit-button {
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background: #3498db;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease-in-out;
}

.submit-button:hover {
    background: #2980b9;
}

.login-error {
    color: red;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.invalid-feedback {
    color: red;
    font-weight: 500;
    font-size: 14px;
}

.login-page .footer {
    background-color: #fff;
    margin-top: 0;
}