/* Main Section */
section.main  {
    overflow-y: auto;
    overflow-x: hidden;
    position: absolute;
    height: 85vh;
    width: calc(100vw - 344px);
    top: 0;
    right: 0;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0px 20px 40px rgba(73, 115, 235, 0.1);
    margin-top: 22px;
    margin-right: 34px;
}
@media (max-width:991px) {
    section.main  {
        height: calc(100vh - 150px);
        width: calc(100vw - 52px);
        margin: 130px 26px 26px;
        
    }
}

section.main .main-content {
    padding: 30px 32px;
}
@media (max-width:991px) {
    section.main .main-content {
        padding: 30px 40px;
    }
}
section.main .main-content .main-head{
    margin-bottom: 18px;
    padding-bottom: 20px;
    border-bottom: 2px solid  #F2F4F9;
}
section.main .main-content .main-head {
    padding-left: 0;
}
section.main .main-content .main-head h1{
    font-weight: 600;
    font-size: 24px;
    color: #20252D;
}
section.main .main-content h2 {
    font-weight: 600;
    font-size: 18px;
    color: #20252D;
    margin-bottom: 25px;
}
section.main .main-content form .form-floating {
    margin-bottom: 20px;
}
section.main .main-content form .form-floating input {
    background-color: #EFF0F7 ;
    border-radius: 16px;
}

section.main .main-content form .form-floating label{
    font-weight: 500;
    font-size: 14px;
    color:#A0A3BD;
}
.form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label {
    opacity: 1;
    color: #6E7191;
}

section.main .main-content form .form-floating:last-of-type {
    margin-bottom: 30px;
}
form hr {
    height: 2px;
    border-color: #F2F4F9;
}

section.main .main-content form h2{
    margin-bottom: 12px;
}
section.main .main-content p  {
    font-size: 12px;
    color: #A8AFC3;
    margin-bottom: 50px;
}
@media(max-width:991px){
    section.main .main-content p {
        margin-bottom: 0;
    }
}
section.main .main-content .form-save span {
    margin: 15px 37px;
    font-size: 14px;
    font-weight: 600;
    color: #4973EB;
}
section.main .main-content .form-save a {
    display: inline-block;
    text-decoration: none;
    padding: 15px 48px;
    font-weight: 600;
    font-size: 14px;
    color: white;
    background: #70B997;
    border-radius: 16px;
    
}
/* Main Section */