.section-login {
    position: relative;
    background: url('/assets/BG-Cadastro-Login.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2em 1em;
    height: 80vh;
    overflow: hidden;
}

.section-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1;
}

.section-login > * {
    position: relative;
    z-index: 2;
}

.login-container {
    background: #fff;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 700px;
    text-align: center;
}

h2 {
    margin-bottom: 1em;
    color: #681C7B;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.form-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

input {
    padding: 0.8em;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

button {
    padding: 0.8em;
    background-color: #681c7b;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #4b125a;
}
