body {
height: 100%;
margin: 0;
background-image: url("../images/BG.png");
background-repeat: no-repeat;
font-family: 'Poppins', sans-serif;
}

.form-master{
    width:60%;
    margin:auto;
    margin-top:15%;
    position: relative;
}

.form-holder{
    width:260px;
    height:auto;
    padding:35px;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    float:right;
}
.form-header{
    display: flex;
}
.form-title{
    width:70%;
}
.form-logo{
    width:120px;
    height:80px;
    background-image: url("../images/spa.png");  
    float:right;
}
.form-control{
    width: 100%;
    height:35px;  
    border:1px solid gray;
}

.btn-primary{
    width: 100%;
    height:50px;  
    border:1px solid rgb(255, 255, 255);
    border-radius:10px;
    margin-top: 15px;
    color:white;
    font-weight: 500;
    font-size: medium;
    font-family: 'Poppins', sans-serif;
    cursor:pointer;
    background: linear-gradient(to right, #ff8827 0%, #e4d50d 100%);
}

@media only screen and (max-width: 800px) {

    .form-master{
        width:90%;
        height: 100vh;
        margin:auto;
        /* margin-top:15%; */
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        /* border:1px solid red; */
    }    

    .form-holder{
        width:260px;
        height:auto;
        padding:35px;
        background-color: rgb(255, 255, 255);
        border-radius: 20px;
        margin:auto;
        border:1px solid rgb(24, 23, 23);
    }    
}