body {
    background: url('./images/img-2.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.header {
    width: 100%;
    text-align: center;
    background: linear-gradient(to bottom, rgb(120 120 120 / 59%), rgb(214 214 214 / 0%));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.header-brand {
    padding: 20px;
    text-align: left;
    background: linear-gradient(to bottom, rgb(37 37 37), rgb(214 214 214 / 0%));
    width: 100%;
}
.header-brand img {
    width: 300px;
}
.header-text h1 {
    color: #f89a1c;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.header-text .subtitulo {
    color: #fff;
    font-size: 2.5rem;
    text-align: left;
    font-weight: 700;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.container-box {
    background: #FFF;
    padding: 30px 20px 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 40px;
}

.logo {
    width: 120px;
    margin-bottom: 20px;
}

.title {
    color: #f89a1c;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .header-text h1 {
        font-size: 1.8rem;
    }
    .container-box {
        top: 220px;
        padding: 30px;
    }
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.form-group {
    text-align: left;
    color: #f89a1c;
    font-weight: bold;
}

.btn-primary, .btn-primary:active, .btn-primary:focus  {
    color: #fff;
    background-color: #f89a1c;
    border-color: #FFF;
}
.btn-primary:hoover  {
    background-color: #1983bb;
}

.footer {
    background-color: #373737;
    color: #fff;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    margin-top: auto;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}
.footer p {
    margin: 0;
}

#loading {
    display: none; /* Inicialmente oculto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}