/* Reset and Global Styles */
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

/* Header Styles */
header {
    
    padding: 0 50%;
    justify-content: space-between;
    box-shadow: 0px 10px 25px #00000043;
    
}
img {
    width: 60%;
}

/* Navigation Styles */
.main-nav {
    padding: 10px;
    display: flex;
    column-gap: 40px;
    padding-top: 18px;
}

.main-nav a {
    font-size: 20px;
    color: #3d414a;
    text-decoration: none;
    transition-duration: 0.3s;
}

.main-nav a:hover {
    color: #5762D5;
}

#selected {
    color: #5762D5;
}

/* Centered Text Styles */
h1,
p {
    text-align: center;
    margin: 50px auto;
    padding: 0 35%;
}

/* Form Styles */
form {
    
    width: 80%;
    background-color: #EEEFF1;
    border: solid 1px #3c404a2f;
    border-radius: 15px;
    color: #3d414a;
    padding: 25px;
    margin: 50px auto;
}




.input-field:focus {
    outline: solid 2px #5762D5;
}

form a {
    color: #5762D5;
    text-decoration: none;
}

button {
    width: 80%;
    background-color: #5762D5;
    border: none;
    border-radius: 10px;
    color: white;
    padding: 10px 0;
    font-size: 20px;
    font-weight: bold;
    transition-duration: 0.3s;
}

button:hover {
    background-color: #4751c0;
    cursor: pointer;
}

.error-message {
    color: red;
    
}
#intro label {
    font-weight: 300;
    display: block;
    margin-bottom: 5px;
}

/* Style for the container of the form and the button */
.form-controls {
    width: 80%;
    margin: 0 auto; /* Center the container horizontally */
    text-align: left; /* Align the button to the left within the container */
    margin-top: -20px; /* Adjust the top margin as needed */
}

/* Style for the "Go Back to Home Page" button */
.form-controls button {
    background-color: #5762D5;
    border: none;
    border-radius: 10px;
    color: white;
    padding: 10px 0;
    font-size: 20px;
    font-weight: bold;
    transition-duration: 0.3s;
    cursor: pointer;
}

#loading-bar {
    width: 0;
    height: 5px;
    background-color: #5762D5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: width 5s ease-out;
}


.form-controls button:hover {
    background-color: #4751c0;
}

#intro button {
    
        border: none;
        border-radius: 50px;
        background-color: #EEEFF1;
        color: #3d414a;
        font-size: 12px;
        padding: 10px 30px;
        margin-left: 0; /* Updated to move the button to the left */
        width: auto; /* Allow the button to take the natural width */
        cursor: pointer;
        transition-duration: 0.3s;
    
}

#feedback button:hover {
    background-color: #3d47b0;
}
.requestform input[type="text"],
.requestform input[type="time"],
.requestform input[type="date"],
.requestform select,
.requestform input[type="tel"] {
    width: 300%; /* Set to 100% to take the full width of the container */
    padding: 10px; /* Adjust padding to your preference */
    margin-bottom: 10px;
    box-sizing: border-box;
    margin-left: -100%;
    
}
.form-group span:-webkit-validation-error {
    color: red;
}

/* Adjust form group styles */
.form-group {
    margin-bottom: 10px; /* Set your desired margin-bottom */
    padding: 0; /* Remove default padding */
}


.requestform .btn-purple {
    width: 100%;
    background-color: #5762D5;
    border: none;
    border-radius: 10px;
    color: white;
    padding: 10px 0;
    font-size: 20px;
    font-weight: bold;
    transition-duration: 0.3s;
    cursor: pointer;
}
/* Style for error messages in an unordered list */
.errorlist {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-bottom: -50px;
}

.errorlist li {
    color: red;
    margin-bottom: 10px; /* Set your desired margin-bottom */
}


