/* General body styles */
body {
    font-family: Arial, sans-serif;
    color: white;
    margin: 0;
    padding: 0;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

body {
    background: url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
}


@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/custom-font.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

h1 {
    font-family: 'CustomFont';
    /* Use the custom font */
    font-size: 2.5rem;
    /* Adjust size as needed */
    font-weight: bold;
    /* Optional: Make it bold */
    color: white;
    /* Ensure the color is visible */
    text-align: center;
    /* Optional: Center the text */
    margin-bottom: 20px;
    /* Add spacing below */
}

/* Overlay for background image opacity */


/* Content container */
.container {
    position: relative;
    z-index: 2;
    /* Ensures the content is above the overlay */
}

/* Card styles */
.card-header {
    background-color: black;
    /* Black background for the card header */
    text-align: center;
    /* Center the content */
    padding: 15px;
    /* Add padding */
}

.card-header img {
    display: block;
    margin: 0 auto;
    /* Center the image */
}

/* Button styles */
.btn-lg {
    font-size: 1.25rem;
    /* Larger font for buttons */
    padding: 10px 20px;
    /* Adjust padding */
}

/* Utility classes */
.text-white {
    color: white;
    /* Ensures text is white */
}

.bg-secondary {
    background-color: #6c757d;
    /* Bootstrap secondary background color */
}

.form-control-bigger {
    /* Increase padding & font-size as desired */
    padding: 1.25rem;
    font-size: 1.5rem;
    /* bigger text */
}

/* Make buttons bigger than Bootstrap's .btn-lg */
.btn-bigger {
    padding: 1rem 1.5rem;
    font-size: 1.3rem;
}

h4 {
    color: #083242;
    font-weight: bold;
}