

* {
    margin: 0;
    padding: 0;

}
html {
    font-size: 10px;
}
body {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}
:root {
    --section-background-color:rgb(250,248,245);
    --focus-background-color:#ed5158;
    --button-background-color:#ed5158;
}
@media (max-width: 1100px) {
    .wrapper {
        margin:13px 7.5% !important;
    }
}
.wrapper {
    margin:13px 15% ;
     display: flex;
     flex-direction: column;
    row-gap: 4px;
    font-size: 3rem;

    }
      form {
        display: inline-flex;
        flex-direction: column;
        width: 50%;
        row-gap: 7px;
          select {
              font-size: 15px;
              padding: 5px 30px;
              border-radius: 7px;
           }
        .info {
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            white-space: pre-wrap;
            column-gap: 2px;
        }
        .read {
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            white-space: pre-wrap;
            column-gap: 2px;
            a{
                color: blue;
            }
        }
        .cartype {
            display: flex;
            column-gap: 2%;
            select {
                font-size: 15px;
                padding: 5px 30px;
                width: 49%;
            }
            input[type="text"] {
                font-size: 15px;
                width: 49%;
            }
        }

      }
      input[type="text"] {
         padding: 5px 30px;
         border-radius:7px;
         border: .5px solid black;
         outline: none;
          font-size: 15px;
    }
    input[type="text"]:focus {
        outline: 3px solid var(--focus-background-color);
    }
    select:focus {
        outline: 3px solid var(--focus-background-color);
    }
    button {
        padding: 10px 30px;
        background-color:var(--button-background-color);
        color: white;
        border: none;
        border-radius: 20px !important;
        font-size: 20px !important;
        text-align: center !important;
        cursor: pointer;
        margin-bottom: 30px !important;
    }
h1 {
    font-size: 30px !important;
    margin-top: 30px !important;
    color: var(--button-background-color) !important;
}
.read-accept {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 4px;
    font-size: 14px;
    margin-top: 3px;
    cursor: pointer;
 input {
     cursor: pointer;
 }
    a {
        color: blue;
    }
}
.warning-message {
    font-size: 20px;
    width: 100%;
   .warning {
       color: white;
       background-color: red;
   }
    .sucess {
        background-color: green;
        color: white;
    }
}
@media(max-width: 1200px) {
    form {
        width: 100%;
    }
    select {
        font-size: 15px;
        padding: 5px 30px;
        width: 80%;
    }
    input[type="text"] {
        font-size: 15px;
        width: 80%;
    }
    button {
        width: 70%;

    }
    .cartype {
        select {
            font-size: 15px;
            padding: 5px 30px;
            width: 39% !important;
        }
        input[type="text"] {
            font-size: 15px;
            width: 39% !important;
        }
    }
}
@media(max-width: 600px) {
    form {
        width: 100%;
    }
    select {
        font-size: 15px;
        padding: 5px 30px;
        width: 98%;
    }
    input[type="text"] {
        font-size: 15px;
        width: 98%;
    }
    button {
        width: 98%;

    }
    .cartype {
        select {
            font-size: 15px;
            padding: 5px 30px;
            width: 48% !important;
        }
        input[type="text"] {
            font-size: 15px;
            width: 48% !important;
        }
    }
}
