*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    background: linear-gradient rgba(0, 0, 50, 0.8);
    align-items: center;
    justify-content: center;
    text-align: center;
}
.form-box{
    width: 90%;
    max-width: 450px;
    position: absolute;
    top: 50%;
    border-radius: 10px;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 20px;
     background: #ff8c00;

}
h1{
    position: relative;
    margin-bottom: 20px;
    font-size: 50px;
}
form{
    width: 100%;
    height: 60vh;

}
.input-field{
    margin: 15px 0px;
    display: flex;
    align-items: center;
    padding: 15px;
    transition: all 0.5s;

}
input{
    width: 100%;
    padding: 18px 15px;
    border-radius: 4px;
    outline: 0;
    border: 0;
}
.btn-field{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.btn-field button{
    flex-basis: 48%;
    padding: 12px;
    border-radius: 18px;
    border: 0;
    color: #f0f8ff;
    background: #0000cd;
    margin-top: 20px;
    transition: all 0.3s;
}
.btn-field button:hover{
    background: #007fff;
}
.btn-field button:active{
    background: #056608;
}
.ptag{
    color: #f0f8ff;
    font-size: 20px;
    
}
.ptag a{
    text-decoration: none;
    transition: all 0.3s;

}
.ptag a:active{
    color: #f5f5f5;
    background: #66ff00;
}
.ptag a:hover{
    color: #ff033e;
}
.btn-field button.disable{
    background: #eaeaea;
    color: #f5f5f5;
}
.btn-field button.disable:hover{
    background: #007fff;
}