/* Estilo personalizado para alinhar o formulário flutuante no canto direito */
@media (min-width: 768px) {
    .floating-container {
        position: absolute;
        top: 50%;
        right: 5%;
        transform: translateY(-50%);
    }
}

.background-image {
    background-image: url('images/login CGA 06.png');
    background-size: cover;
    background-position: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.form-box {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: rgba(24, 24, 24, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.492);
    margin: 5px;
}

.form-box img {
    max-width: 100%;
    height: auto;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.0);
    color: white;
    text-align: center;
    padding: 10px 0;
}