*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
body
{
    background: white;
    min-height: 100vh;
}
.container
{
    width: 360px;
    height: 620px;
    margin: 7% auto;
    background:#fff;
    border-radius: 5px;
    position: relative;
    box-shadow: #ff6b35 0px 5px 15px;
    overflow: hidden;
}
h3
{
    text-align: center;
    margin-bottom: 20px;
    color: #ff6b35;
    font-size:16px;
}

.container form{
    width: 280px;
    position:absolute;
    top: 50px;
    left: 40px;
    transition: 0.5s;
}
form input{
    width: 100%;
    padding: 10px 5px;
    margin: 5px 0;
    background: transparent;
    border-radius: 4px;
    margin-bottom: 15px;
    border: 1px solid #ff6b35;
    outline: none;
    text-align: center;
}
input:focus {
    
    border: 2px solid #ff6b35;
}

select:focus {
    border: 2px solid #ff6b35;
}

form select{
    width: 104%;
    padding: 10px 5px;
    margin: 5px 0;
    background: transparent;
    border-radius: 4px;
    margin-bottom: 25px;
    border: 1px solid #ff6b35;
    text-align: center;
}
::placeholder{
    color:#777;
}
.btn-box{
    width: 100%;
    margin: 15px auto;
    text-align: center;
}
form button{
    width: 110px;
    height: 35px;
    margin: 0 10px;
    background: linear-gradient(to right, #ff6b35, #ff8c42);
    border-radius: 30px;
    border: 0;
    outline: none;
    color: #fff;
    cursor: pointer;
     transition: 1s;
}
form button:hover{
    transition: 1s;
    background: linear-gradient(to right,#e55a2b,#e55a2b);
}
    
#form2{
    left: 450px;
}
#form3{
    left: 450px;
  
}
.step-row
{
    width: 360px;
    height: 40px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    box-shadow: 0 -1px 5px -1px #000;
    position: relative;
}
.step-col{
    width: 120px;
    text-align: center;
    color: #333;
    position: relative;
}
#progress{
    position: absolute;
    height: 100%;
    width: 120px;
       background: linear-gradient(to right, #ff6b35, #ff8c42);
    transition: 1s;
}
#progress::after{
    content: '';
    height: 0;
    width: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    position: absolute;
    right: -20px;
    top: 0;
    border-left: 20px solid #ff8c42;
}
.image-logo img
{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff6b35;
}
.image-logo
{
    text-align: center;
    margin-bottom: 15px;
}
.submit{
    background: linear-gradient(to right, #ff6b35, #ff8c42);
}
.submit:hover{
    transition: 1s;
    background: linear-gradient(to right,#e55a2b,#e55a2b);
}
.loader
{
    text-align:center;
    display:none;
}
/*
 Mobile Responsiveness */
@media (max-width: 480px) {
    .container {
        width: 90%;
        max-width: 360px;
        margin: 5% auto;
        height: auto;
        min-height: 620px;
    }
    
    .container form {
        width: 85%;
        left: 7.5%;
    }
    
    .step-row {
        width: 90%;
        max-width: 360px;
    }
    
    form button {
        width: 100px;
        margin: 5px;
    }
    
    h3 {
        font-size: 14px;
        padding: 0 10px;
    }
}

@media (max-width: 360px) {
    .container {
        width: 95%;
        margin: 3% auto;
    }
    
    .container form {
        width: 90%;
        left: 5%;
    }
    
    form button {
        width: 90px;
        font-size: 12px;
    }
}