/* Contact Page Specific Styles */

.contact-form-section {
    max-width: 50rem;
    margin: 6.25rem auto;
    padding: 2rem;
    background-color: #1f2833;
    border-radius: 0.5rem;
    color: #f4f4f4;
    text-align: left;
}

.contact-form-section h1 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #ffffff;
}

.contact-form-section .form-group {
    margin-bottom: 1.5rem;
}

.contact-form-section label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.contact-form-section input,
.contact-form-section textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #45a29e;
    border-radius: 0.5rem;
    background-color: #0b0c10;
    color: #f4f4f4;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form-section input:focus,
.contact-form-section textarea:focus {
    outline: none;
    border-color: #66fcf1;
}

.contact-form-section .submit-button {
    padding: 0.75rem 1.5rem;
    background-color: #45a29e;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form-section .submit-button:hover {
    background-color: #66fcf1;
}

/* Hide scrollbar by default */
body::-webkit-scrollbar {
  width: 12px; /* Change width as needed */
}

body::-webkit-scrollbar-track {
  background: #0b0c10; /* Change to match your theme */
}

body::-webkit-scrollbar-thumb {
  background-color: #45a29e; /* Change to match your theme */
  border-radius: 10px;
  border: 3px solid #0b0c10; /* Change to match your theme */
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #66fcf1; /* Change to match your theme */
}

/* Hide scrollbar on default state */
body::-webkit-scrollbar {
  opacity: 0;
  transition: opacity 0.3s;
}

/* Show scrollbar when scrolling */
body:active::-webkit-scrollbar {
  opacity: 1;
}
body:hover::-webkit-scrollbar {
  opacity: 1;
}
