@charset "UTF-8";

body {
    font-family: 'Poppins', sans-serif;
    background: url('images/wallpaper05.jpg') no-repeat center center/cover;
    color: white;
    margin: 0;
    padding-top: 70px; /* Ensure content doesn't overlap the navbar */
    position: relative;
}

body::before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 15px;
    min-height: calc(100vh - 70px); /* Adjust for navbar height */
}

.header h1 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.header p {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-custom {
    padding: 15px 40px;
    font-size: 1.1rem;
    background-color: #ff6f61;
    border: none;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.btn-custom:hover {
    background-color: #ff4940;
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.8); /* Semi-transparent background for better visibility */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10; /* Ensure navbar stays on top */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* Add slight shadow for better contrast */
}

.navbar-brand img {
    height: 50px;
}

.navbar-light .navbar-nav .nav-link {
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #ff6f61;
}

/* Form Container */
.form-container {
    background-color: #29292a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.form-container label {
    color: #fff; /* Ensure labels are visible against dark backgrounds */
    font-weight: 500;
}

.input-group.success input {
    border-color: #09c372;
}

.input-group.error input {
    border-color: #ff3860;
}

.input-group .error {
    color: #ff3860;
    font-size: 15px;
    height: 13px;
}

/* Thank You Message */
#thank-you-message {
    margin-top: 20px;
    padding: 15px;
    background-color: #3939c8;
    color: white;
    text-align: center;
    border-radius: 4px;
    font-size: 18px;
    display: none;
}

#thank-you-message.show {
    display: block;
}
