/* Section with background image */
.background-section {
    width: 100%;
    height: 93vh; /* Adjust height as needed */
    background-image: url('assets/img/register/backerp5.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Optional: Overlay effect */
.background-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay (adjust transparency) */
}

/* Container inside section */
.content-container {
    position: relative;
    z-index: 1;
}

/* Card styling */
.custom-card {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(250, 249, 249, 0.2);
    height: 70vh;
}

/* Add some margin to separate from edges */
.custom-padding {
    padding-left: 20px;
    padding-right: 20px;
}

.billing-info {
    width: 100%;
    padding: 20px;
    border-radius: 8px;
    background-color: transparent;
    font-size: 20px;
    font-weight: bold;
    
    /* Gradient with 60% dark orange and 40% light yellow */
    background: linear-gradient(to right, #f38601 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block; /* Ensures gradient applies correctly */
}

.custom-input {
    border-radius: 8px; 
    border: 1px solid #ccc; 
    padding: 8px; 
    font-size: 14px;
    background-color: #f8f9fa;
    transition: all 0.3s ease-in-out;
}

 /* Focus Effect */
 .custom-input:focus {
    box-shadow: 0 0 8px rgba(255, 165, 51, 0.5); 
    outline: none; 
}

/* Custom Button Styles */
.custom-btn {
    border-radius: 4px;  
    padding: 3px;  
    font-size: 20px; 
    font-weight: 600; 
    background: linear-gradient(to right, #f38601 0%, #FFD700 100%); 
    border: none; 
    transition: all 0.3s ease-in-out;
    color: white;
}

/* Hover Effect */
.custom-btn:hover {
    background: linear-gradient(to right, #FFD700 0%, #f38601 100%); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
}

/* Focus Effect */
.custom-btn:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(255, 165, 51, 0.8); 
}

.plan-details {
    font-size: 16px;
    color: #333; /* Dark Gray for better readability */
}

.form-check-input {
    border-radius: 3px; /* Small round checkbox */
    border: 1px solid #666; /* Slightly darker border */
}

.form-check-label a {
    color: #007bff; /* Link color */
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Custom Green Button Styles */
.custom-btn-green {
    border-radius: 4px;  
    padding: 3px;  
    font-size: 20px; 
    font-weight: 600;
    background: linear-gradient(to right, #28a745 0%, #66ff66 100%); /* Green Gradient */
    border: none; 
    transition: all 0.3s ease-in-out;
    color: white;
    cursor: pointer;
}

/* Hover Effect */
.custom-btn-green:hover {
    background: linear-gradient(to right, #66ff66 0%, #28a745 100%); /* Reverse Gradient */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
}

/* Focus Effect */
.custom-btn-green:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.8); /* Green Glow Effect */
}
