body {
    margin: 0;
    height: 100vh;
    overflow: hidden;
    background-color: #02012D;
    background-image: url('../logos/degradado.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    width: 100%;
    height: 100%;
    max-width: 1200px;
    padding: 15px;
    background-color: #0000;
    border-radius: 10px;
}

.form-control, .btn {
    width: 100%;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: white;
    background-color: transparent;
    border: 2px solid transparent;
    transition: background-color 0.3s, border 0.3s;
}

.btn-whatsapp:hover {
    background-color: #25D366;
    border: 2px solid #25D366;
}

.btn-facebook:hover {
    background-color: #1877F2;
    border: 2px solid #1877F2;
}

.btn-linkedin:hover {
    background-color: #0077B5;
    border: 2px solid #0077B5;
}

.btn-website:hover {
    background-color: #000;
    border: 2px solid #000;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .login-container {
        max-width: 100%;
        padding: 10px;
    }

    .bsb-tpl-bg-platinum, .bsb-tpl-bg-lotion {
        padding: 20px 10px;
    }

    .form-control, .btn {
        font-size: 14px;
    }

    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .bsb-tpl-bg-platinum h3, .bsb-tpl-bg-lotion h3 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .login-container .col-12.col-md-6 {
        padding: 0;
    }

    .form-control {
        padding: 8px 12px;
    }

    .btn {
        padding: 10px;
    }

    .login-container .container {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    .bsb-tpl-bg-lotion, .bsb-tpl-bg-platinum {
        display: block;
        width: 100%;
        text-align: center;
    }

        .bsb-tpl-bg-lotion h3, .bsb-tpl-bg-platinum h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
}

@media (max-width: 480px) {
    .form-control::placeholder {
        font-size: 12px;
    }

    h3, label {
        font-size: 18px;
    }

    .social-btn i {
        font-size: 18px;
    }
}
