body{
    background-color: black;
}
main{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
}

h1{
    text-align: center;
    font-size: 30px;
    background-color: white;
    color:black;
    padding: 0px 5px 0px 5px;
    border-radius: 3px;
}

form{
    display: grid;
    align-items: center;
    justify-content: center;
}

.box{
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px;
}

label{
    text-align: center;
    font-size: 20px;
    background-color: #ff4500;
    padding: 5px;
    border-radius: 3px;
    width: 10vw;
    font-weight: 550;
}

label:hover{
    background-color: white;
    color: #ff4500;
}

.inn{
    text-align: center;
    font-size: 20px;
    width: 10vw;
}

.inn:hover{
    background-color: #ff4500;
    color: white;
}

.btn{
    display: flex;
    align-items: center;
    justify-content: center;
}

button{
    width: 15vw;
    font-size: 20px;
    margin: 10px;
    color: #ff4500;
    font-weight: 800;
    background-color: white;
    border-radius: 5px;
}

button:hover{
    background-color: #ff4500;
    color: white;
    cursor: pointer;
}

.sucess{
    font-size: 25px;
    color: #ff4500;
}

.sucess{
    font-size: 25px;
    color:red;
    font-weight: 800;
}


@media( max-width:600px){

    .box{
        width: 85vw;
    }

    .inn , label{
        width: 40vw;
    }

    button{
        width: 40vw;
    }


















}