@keyframes scroll-text {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

body {
    font-family: 'Arial Rounded MT Bold', sans-serif;
    margin: 0;
    background-color: #F0F0F0; /* Background color from the last style block */
}

.login-container {
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 4rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
}

.login-container h1 {
    color: #fff;
    font-size: 1.75rem;
}

.form-group {
}

.form-group label {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.form-control {
    padding: 0.75rem;
    font-size: 1rem;
    background-color: #fff;
    color: #fff;
    border-radius: 5px;
    border: none;
}

.form-control::placeholder {
    font-weight: bold;
    color: rgba(0, 0, 0, 0.6);
}

.btn-primary {
    margin-top: 2rem;
    background-color: #6ae3ba;
    border: none;
    width: 100%;
    border-radius: 5px;
    cursor: pointer!important;
}

.btn-primary:hover {
    background-color: #3bb88e;
}

.register-link {
    color: #fff;
    font-size: 1rem;
    display: block;
    margin-top: 2rem;
}

.whatsapp-link {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
}

.text-left {
    text-align: left;
}

.text-sunrize {
    color: #3bb88e;
}

.bg-sunrize {
    background-color: #9decd1;
}

/* Media Queries */

@media (max-width: 576px) {
    .login-container {
        padding: 2rem;
    }

    .login-container h1 {
        font-size: 1.5rem;
    }

    .form-group label {
        font-size: 1rem;
    }

    .form-control {
        font-size: 1rem;
        padding: 0.5rem;
    }

    .btn-primary {
        font-size: 1rem;
        padding: 0.75rem;
    }

    .register-link {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .login-container {
        padding: 3rem;
    }

    .login-container h1 {
        font-size: 2rem;
    }

    .form-control {
        font-size: 1rem;
    }

    .btn-primary {
        font-size: 1rem;
        padding: 1.25rem;
    }

    .register-link {
        font-size: 1rem;
    }
}

/* Footer styles */

footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
}

/* Other styles (from the last style block) */

.container {
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
}

.welcome-message {
    background-color: #E6F5FF;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.balance-container {
    display: flex;
    justify-content: space-between;
}

.balance-card {
    background-color: white;
    padding: 20px;
    width: 48%;
}

button {
    border: none;
    background-color: none;
}

.optimization-section {
    margin-top: 20px;
    text-align: center;
}


.icons-container {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.icons-container img {
    width: 50px;
    height: 50px;
}