@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* General */
body {
    background-color: #f0f2f5;
    font-family: "Roboto", sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    background-image: url("../img/bg_referidos.jpg");
      background-repeat: no-repeat;
      background-size: cover;
}

/* Navbar */
.bg_black {
    background-color: #4a4a4a;
}

.bg-light{
    background-image: none;
    background-color: #ededed;
}

.navbar {
    padding: 1rem 2rem;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Botones */
.btn {
    border-radius: 8px !important;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-danger {
    background-color: #dc3545;
    border: none;
}

.btn-danger:hover {
    background-color: #a71d2a;
}

.btn-outline-success {
    border-radius: 8px !important;
}

/* Tarjetas */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators [data-bs-target] {
    background-color: #ccc;
}

/* Formularios */
input.form-control, select.form-control, textarea.form-control {
    border-radius: 8px;
    border: 1px solid #ced4da;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input.form-control:focus, select.form-control:focus, textarea.form-control:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Modals */
.modal-content {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Títulos */
h2, h3, h4, h5 {
    font-weight: 600;
}
