body{
    background-color: black;
}
.title{
    margin-top: 70px;
    text-align: center;
}
.title h1{
    color: #ff7f00;
    font-size: 75px;
}
.title p{
    color: white;
    font-size: larger;
}
.frm{
    width: 50%;
    margin: 25px auto;
    border-radius: 16px;
    background: var(--White, #FFF);
    box-shadow: 0px 1px 13px 0px rgba(0, 0, 0, 0.11);
    padding: 31px 27px;
}
.frm form{
    display: flex;
    flex-direction: column;
}
.rabbit_input{
    border-radius: 8px;
    background: var(--Stroke, #F1F3F9);
    padding: 8px 16px;
    border: transparent;
    margin: 7px 0;
    font-size: 18px;
}
.rabbit_input:focus{
    outline: none; 
}
.input_medium{
    width: 49%;
}
.input_large{
    width: 99%;
}
.control{
    margin: 25px;
    text-align: center;
}
.control button{
    width: 50%;
    padding: 10px;
    border-radius: 10px;
    border: transparent;
    background-color: black;
    color: #ff7f00;
    font-size: 16px;
}
