body {
    padding: 5vh 5vw;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
  }
  
  .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .video-background::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%; 
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.957), #82ee8d5d);
    z-index: 2;
    pointer-events: none;
}
 

.title, .link, .subtitle {
    text-transform: uppercase;
}

.link {
    font-size: 24px;
}

.green {
    color: var(--green);
}

.grey {
    color: gray;
}

.back {
    transform: rotate(135deg);
}

.title {
    margin-top: 10vh;
    text-align: center;
    font-size: 32px;
}

main {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 10vw;
    margin-top: 10vh;
}

.link_cover {
    align-self: start;
    display: flex;
    gap: 5px;
}

.link_cover2 {
    align-self: start;
    gap: 5px;
    display: none;
} 

.left_container {
    display: flex;
    gap: 2vh;
    flex-direction: column;
    width: fit-content;
}

.right_container {
    height: 100%;
    width: 20vw;
    display: flex;
    flex-direction: column;
    gap: 2vh;
    position: relative;
}

input, .custom-select{
    width: 30vw;
}

.subtitle {
    font-size: 24px;
}

input, .custom-select {
    color: white;
    padding: 10px 0;
    font-size: 18px;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--white);
    outline: none;
    cursor: pointer;
}

input::placeholder, .hint {
    color: grey;
}

.description, .hint {
    font-size: 12px;
    color: rgb(168, 168, 168);
}

.description {
    
    width: 70%;
    padding-bottom: 5vh;
}

.hint {
    margin-top: -5px;
}

.error-message {
    color: rgb(202, 0, 0);
    font-size: 14px;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.error-message.visible  {
    opacity: 1;
}

.left_container:has(.error-message.visible) input {
    border-bottom: 2px solid rgb(246, 35, 35);  
}

.week {
    display: flex;
    gap: 20px;
    color: rgb(168, 168, 168);
    font-family: sans-serif;
    justify-content: center;
    position: absolute;
    top: 35%;
}

.weekday {
    display: block;
    font-size: 18px;
    margin-bottom: 5px; 
    color: rgb(168, 168, 168);
}
  
.date {
    display: block;
    font-size: 18px;
}
  
.today .weekday,
.today .date {
    color: var(--white);
    align-self: start;
    display: flex;
}

.time_cover {
    display: flex;
    gap: 20px;
}

.time {
    font-size: 18px;
    color: rgb(168, 168, 168);
}

.day.selected .weekday,
.day.selected .date {
    color: var(--green) !important;
}

.time.selected {
    color: var(--green) !important;
    transform: scale(1.1);
}

.options {
    margin-top: 2vh;
    padding: 2vh 0;
    position: absolute;
    width: 30vw;
    display: none;
    background: var(--black);
    color: grey;
}

.custom-select.open .options {
    display: block;
}

.options li {
    cursor: pointer;
    padding: 5px 20px;
}

.arrow {
    z-index: -1;
    filter: brightness(0) invert(1);
}

/* ======  HOVER EFFECTS ====== */


.link_cover:hover {
    padding-left: 10px;
}

.day:hover, .time:hover {
    color: var(--green);
    cursor: pointer;
    transform: scale(1.1);
    transition: .2s;
}

.day:hover .weekday {
    color: var(--green);
}

.today:hover .weekday {
    color: var(--white);
}

.options li:hover {
    background: var(--green);
}





  