        *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'barlow';
  }


@font-face{
font-family: 'sf-pro-regular';
src: url(font/sf-pro-regular.OTF);
}
@font-face{
    font-family: 'sf-pro-title';
    src: url(font/sf-pro-title.OTF);
    

}
@font-face{
    font-family: 'qurova';
    src: url(font/qurova.ttf);
    

}
@font-face {
  font-family: 'tusker';
  src: url(font/TuskerGrotesk-5700Bold.otf);
}
@font-face {
  font-family: 'blastimo';
  src: url(font/blastimoswash.ttf);
}
@font-face{
    font-family: 'handipro';
    src: url(font/handipro.otf);
    

}
@font-face{
    font-family: 'run';
    src: url(font/run.ttf);
    

}
@font-face{
    font-family: 'musticapro';
    src: url(font/musticapro.otf);
    

}

@font-face{
    font-family: 'barlow';
    src: url(font/Barlow-Medium.ttf);
    

}

        main{
            display: flex;
            justify-content: center;
            margin-bottom: 150px;
        }
        section{
            width: 95%;
            max-width: 1024px;
                        margin-top: 150px;

        }
section h2{
    font-family: 'tusker';
    font-size: clamp(30px,6vw,6rem);
    color: #fff;
    width: 100%;
    text-align: center;
    border-bottom: 2px solid #e73c45;
    cursor: default;
    font-weight: lighter;
}
        form {
            display: flex;
            align-items: center;
            flex-direction: column;
            justify-content: center;
            position: relative;
            padding: 20px; 
            height: auto;
            border-radius: 8px; 
            width: 100%;
            max-width: 1024px; 
            margin: auto; }
form input,
form textarea {
    font-family: 'musticapro';
    color: #fff;
    width: 100%;
    height: 50px;
    padding: 10px;
    background: rgba(18, 18, 18, 0.512);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.8px);
    -webkit-backdrop-filter: blur(4.8px);
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}
form select:hover,
form textarea:hover,
form input:hover{
    outline: 2px solid #e73c459a;
}
form select:focus,
form textarea:focus,
form input:focus{
    outline: 2px solid #e73c459a;
}
form button {
    transition: all .3s ease-in-out;
    padding: 15px 20px;
    text-align: center;
    background: #e73c45;
    font-family: 'handipro';
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    width: 100%;
}

form button:hover {
    background: #555;
    width: 97.5%;
}
form label{
    color:#fff;
    font-family:'handipro'; 
    font-weight: bold;
}
        form select{
            font-family: 'musticapro';
            color: #fff;
            width: 100%;
            padding: 10px;
    background: rgba(18, 18, 18, 0.512);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.8px);
    -webkit-backdrop-filter: blur(4.8px);
            border: none;
            margin-bottom: 10px;
            border-radius: 4px;
        }
                form textarea{
              resize: vertical;           
  min-height: 150px;          
  max-height: 400px;          
  overflow-y: auto;           
}
        .agreements {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}
form label{
    color:#fff;
    font-family:'handipro';
    padding:20px;
    font-weight: bold;
}
  
.agreement {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
margin-bottom: 10px;
    background: rgba(18, 18, 18, 0.512);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.8px);
    -webkit-backdrop-filter: blur(4.8px);
}

.agreement:hover {
    background: #2a2a2a;
}
.agreement input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #e73c45;
}

.agreement p {
    margin: 0;
    font-weight: lighter;
    font-size: 0.95rem;
    color: #ffffffe1;
}
