form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 300px;
    width: 100%;
    background-color: white;
    padding: 15px;
    border: 1px solid lightgray;
    border-radius: 5px;
}

.lgn_frm_hdr{
    padding: 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lgn_frm_hdr img{
    height: 180px;
}

.lgn_frm_lbl{
    font-size: 12px;
    font-weight: bold;
    color: #ED7D31;
    padding-left: 10px;
}

.lgn_frm_txt_inpt{
    display: flex;
}

.lgn_frm_txt_inpt input{
    height: 50px;
    border: 1px solid grey;
    flex: 1;
    border-radius: 5px;
    font-family: Poppins;
    padding: 0 10px 0 10px;
    font-size: 15px;
}

.lgn_frm_sb button{
    background-color: #000A73;
    color: white;
    font-size: 20px;
    font-family: Poppins;
    width: 100%;
    border: none;
    border-radius: 5px;
    padding: 5px 0;
    cursor: pointer;
}

.lgn_frm_sb button:hover{
    opacity: .8;
}