* {
    padding: 0;
    margin: 0;
}

.title_wrapper {
  position: absolute;       
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;            
  z-index: 10;
  pointer-events: none;     
}

.title {
    position: absolute;
    bottom: 30vh;            
    left: 35%;
    transform: translateX(-35%);
    font-size: clamp(2rem, 5vw, 5rem);
    font-family: 'SaoTorpes', sans-serif;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    color: #6B2316;
    pointer-events: auto;
}


.title_p {
  position: absolute;
  top: 20vh;              
  right: 19%;
  transform: translateX(-19%);
  width: clamp(150px,20%,300px);
  font-size: clamp(0.7rem, 1.5vw, 1rem);
  font-family: 'LoveYaLikeASister', "sans-serif";
  text-align: right;
  color: #6B2316;
  pointer-events: auto;
}

@media (max-width:1000px) {
    .title_p {
        top: 10vh;
    }
}

.vertical_line{
    background-color: #912508;
    height: 3px;
    width: 30vw;
}

.session_btn{
    position: absolute;
    display: flex;
    gap: 40px;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    align-items: center;
}

.index_btn {
    border: 1px solid #6B2316;
    background-color: #E1D2CD;
    border-radius: 5px;
    width: 150px;
    height: 40px;
    font-family: "LoveYaLikeASister", "sans-serif";
    font-size: 1.5rem;
    color: #6B2316;
    transition: all 0.1s ease;
    cursor: pointer;
}

.index_btn:hover{
    background-color: #6B2316;
    color: #E1D2CD;
    border: 1px solid #e1d2cd;
}

input {
    height: 20px;
    width: 100%;
    border: none;
    border-radius: 5px;
    background-color: #E1D2CD;
}

.index_input {
    margin-bottom: 10px;
}

label {
    color:#6B2316;
    font-size: 1rem;
}

.error-message {
  color: #912508;
  font-size: 1rem;

}

footer {
    position: absolute;
    margin: 20px;
    bottom: 0;
    right: 0;
    text-align: right;
}

footer a, footer p{
    text-decoration: none;
    color: #6B2316;
}

footer a:hover{
    text-decoration: underline;
}

@font-face {
    font-family: 'SaoTorpes';
    src: url('../fonts/SaoTorpes.woff2') format('woff2'),
        url('../fonts/SaoTorpes.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'LoveYaLikeASister';
    src: url('../fonts/LoveYaLikeASister.woff2') format('woff2'),
        url('../fonts/LoveYaLikeASister.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}