/* Styling for the background */
.bg-solitude-blue {
    background-color: #e8f1fe;
}

/* Styling for the border radius */
.border-radius-6px {
    border-radius: 6px;
}

/* Padding for all sides */
.p-40px {
    padding: 40px;
}

/* Padding for large screens */
@media screen and (min-width: 992px) {
    .lg-p-30px {
        padding: 30px;
    }
}

/* Font size */
.fs-19 {
    font-size: 19px;
}

/* Font style */
.alt-font {
    font-weight: 700;
    color: #444;
    /* Dark gray */
}

/* Form icon style */
.form-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* Form input style */
.form-control {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #007bff;
    /* Blue color */
}

/* Textarea style */
.form-textarea textarea {
    resize: vertical;
}

/* Button style */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-base-color {
    color: #fff;
    background-color: #007bff;
    /* Blue color */
}

.btn-base-color:hover {
    background-color: #0056b3;
    /* Darker blue color on hover */
}

.cover-background {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    /* Add any other background properties if needed */
}

/* Add responsive height classes */
.h-500px {
    height: 500px;
}

.sm-h-300px {
    height: 500px;
}
