/* style.css */

body {
    /* Vibrant gradient background */
    /* background: linear-gradient(to right, #8A2387, #E94057, #336085); Purple, Pink, Orange/Red */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    color: #343a40;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background-color: #fff; /* Ensure card background is white for contrast */
    overflow: hidden; /* Helps with border-radius clipping */
}

/* Logo Placeholder Styling */
.logo-placeholder {
    text-align: center;
    margin-bottom: 2rem; /* Space below the logo */
}

.logo-placeholder img {
    max-width: 300px; /* Adjust logo size */
    height: auto;
    margin-bottom: 0.5rem;
    border-radius: 15px; /* Added to make the image corners rounded */
}

.logo-placeholder h1 {
    font-size: 1.8rem; /* Adjust title size */
    color: #343a40;
    font-weight: 700;
}


/* Tabs Styling */
.nav-tabs {
    border-bottom: 1px solid #dee2e6; /* Standard tab bottom border */
    margin-bottom: 1.5rem; /* Increased space below tabs */
}

.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0.5rem; /* Slightly larger radius for tabs */
    border-top-right-radius: 0.5rem;
    color: #6c757d; /* Inactive tab text color */
    transition: all 0.3s ease;
    padding: 0.75rem 1.25rem; /* Adjusted padding for tabs */
    font-weight: 600; /* Bolder text for tabs */
    background-color: transparent; /* Default transparent background */
}

.nav-tabs .nav-link:not(.active):hover {
    border-color: #e9ecef #e9ecef #dee2e6;
    background-color: #f8f9fa;
    color: #495057;
}

.nav-tabs .nav-link.active {
    color: #007bff; /* Highlight color for active tab text */
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
    font-weight: 700;
    position: relative; /* For the highlight bar */
}

/* Active Tab Highlight Bar */
.nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px; /* Position right above the border */
    left: 0;
    width: 100%;
    height: 3px; /* Thickness of the highlight bar */
    background-color: #007bff; /* Primary blue for highlight */
    border-radius: 2px;
    transition: all 0.3s ease;
}


/* Form Controls */
.form-control {
    border-radius: 8px;
    padding: 10px 15px; /* Slightly reduced padding */
    font-size: 1rem; /* Standard font size */
    height: auto; /* Allow height to adjust naturally with padding */
    border: 1px solid #ced4da;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    outline: none;
}

/* Buttons */
.btn {
    border-radius: 8px;
    padding: 10px 15px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.4);
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    background-color: #1e7e34;
    border-color: #1c7430;
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.4);
}

/* Social Buttons */
.btn-social-icon {
    width: 50px;
    height: 50px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 8px;
    flex-shrink: 0;
}
.btn-social-icon i.me-2 {
    margin-right: 0 !important;
}

.btn-google { background-color: #4285F4; border-color: #4285F4; color: #fff; }
.btn-facebook { background-color: #3b5998; border-color: #3b5998; color: #fff; }
.btn-instagram { background-color: #C13584; border-color: #C13584; color: #fff; }
.btn-apple { background-color: #000000; border-color: #000000; color: #fff; }

.btn-google:hover,
.btn-facebook:hover,
.btn-instagram:hover,
.btn-apple:hover {
    filter: brightness(90%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card {
        margin: 20px;
    }
    .btn-social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    .nav-tabs .nav-link {
        padding: 0.6rem 1rem;
    }
    .logo-placeholder img {
        max-width: 100px;
    }
}

.form-group {
    margin-bottom: 20px; /* Consistent spacing for form fields */
    text-align: left; /* Align labels left */
}

.mb-3 { margin-bottom: 1rem !important; }
.mt-3 { margin-top: 1rem !important; }
.red {
    color:red;
}

.bellota {
  font-family: 'Bellota', cursive;
  font-weight: bold; /* This makes it bold */
   text-decoration: none;
   color: #2f3f9fe6;
}

#h2-heading{
    cursor: pointer;
    text-decoration: none;
}