/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Full viewport height */
html, body {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #FBFFFE; /* Light background color */
}

/* Flexbox container for main content */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background-color: #F0F0F0; /* Light gray background for main section */
}

/* Header - Navbar styling */
.navbar {
    background-color: #0060C8; /* Blue navbar */
}

.navbar .navbar-brand {
    color: white; /* White text for the navbar */
}

.navbar .navbar-nav .nav-link {
    color: white;
}

.navbar .navbar-nav .nav-link:hover {
    color: #FF4E03; /* Orange hover effect */
}

.navbar-toggler {
    border-color: white;
}

/* Main content text */
.content {
    text-align: center;
    background-color: white; /* White background for the content */
    padding: 40px;
    border-radius: 10px;
    color: #032130; /* Dark blue text color for better visibility */
}

/* Coming Soon text (Updated to dark blue for visibility) */
h1 {
    color: #032130; /* Dark blue color */
}

p {
    color: #032130; /* Dark blue color for the paragraph */
}

/* Buttons */
.btn-primary {
    background-color: #FF4E03; /* Orange button */
    color: white;
}

.btn-outline-light {
    border-color: #FF4E03; /* Orange border */
    color: #FF4E03; /* Orange text */
}

.btn-outline-light:hover {
    background-color: #FF4E03; /* Orange background on hover */
    color: white;
}

/* Home Page Specific Styles */
.home-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #FBFFFE; /* Light background color */
    flex-direction: column; /* Add this to ensure proper layout on small screens */
}

.home-content {
    text-align: center;
    background-color: transparent; /* Remove gray box */
    padding: 0;
}

/* Make the logo responsive */
.home-content img {
    max-width: 100%; /* Ensure the logo takes up 100% of the available width */
    height: auto; /* Maintain aspect ratio */
    max-height: 80vh; /* Prevent the logo from getting too tall on large screens */
}

/* Button Styling */
.btn {
    margin-top: 20px;
}

/* Style for checkboxes and labels */
.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 15px; /* Add space between items */
}

.form-check-input {
    width: 20px; /* Make the checkbox a bit larger */
    height: 20px;
    margin-right: 10px; /* Add some space between the checkbox and the label */
    accent-color: #0060C8; /* Darker blue for better visibility */
}

.form-check-label {
    font-weight: 500;
    color: #032130; /* Darker text color for readability */
    text-align: left; /* Ensure the text is left-aligned */
    margin: 0; /* Remove default margins */
}

/* Adjust label alignment for forms */
label {
    text-align: left;
}

/* Look for any height or overflow restrictions and remove or adjust them */

.container, .content {
    height: auto;      /* Ensure auto height to allow full scrolling */
    overflow: visible; /* Allow the content to overflow if necessary */
}

/* If there’s a gray box limiting content */
.box-restriction { 
    height: auto; /* Make sure the height is auto so it adjusts based on content */
    max-height: none; /* Remove any max-height limitations */
    overflow: visible; /* Allow the content to overflow if necessary */
}

/* Centering style only for the home page */
.home-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height for proper centering */
 	background-color: #FBFFFE; /* Light background color */
    flex-direction: column; /* Ensures proper centering and stacking */
}



/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 1.5em;
    }

    .content {
        padding: 20px;
    }

    .btn {
        font-size: 1em;
        padding: 10px 20px;
    }
}
