*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.wr{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
}
.form{
    width: 300px;
    height: auto;
    display: flex;
    flex-direction: column;
    color: rgb(206, 64, 8);
}
.info-wr{
    position: absolute;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}
.info{
    position: absolute;
    width: 80%;
    background-color: #fff;
    text-align: center;
    margin: 30px;
    padding: 30px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(206, 64, 8);
    font-weight: 600;
}