.container {
    width: 100%;
    height: 100%;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(-30deg, #042464, #45caf5);
}

.content {
    padding: 65px 25px 70px;
    box-shadow: 0 0 40px #3337;
    height: auto;
    overflow: hidden;
    width: 400px;
    background: #fff;
}

.content h3:first-child {
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    background: linear-gradient(-30deg, #042464, #45caf5);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1.2px;
}

.content form {
    height: auto;
    width: 100%;
    float: left;
}

.content img.logo {
    width: 100%;
    padding: 30px;
    float: left;
}

.content form .form-block {
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 7px;
}

.content form .form-block label {
    width: 100%;
    line-height: 30px;
    float: left;
    font-size: 15px;
    color: #555;
    letter-spacing: 1px;
    font-weight: 400;
}

.content form .form-block input {
    width: 100%;
    border: 0;
    background-color: #2221;
    height: 35px;
    border-radius: 3px;
    outline: none;
    padding: 4px 6px;
}

.content h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content h3 button {
    height: 50px;
    width: 100%;
    border: 0;
    border-radius: 0;
    outline: none;
    font-size: 16px;
    color: #fff;
    background-color: #1f69a0;
    cursor: pointer;
    transition: all linear .5s;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
    padding: 0 20px;
    letter-spacing: 1px;
}

.content h3 button:hover {
    background-color: #1aac76;
}

.content h3 button ion-icon {
    transform: rotate(-30deg);
    margin-top: -2px;
}

.content h3 label {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 300;
    letter-spacing: 1px;
    color: #fff;
    column-gap: 20px;
}

label ion-icon{
    font-size: 30px;
}

.content h3 label.process{
    font-size: 15px;
    background: linear-gradient(-30deg, #042464, #45caf5);
}

.content h3 label.success{
    font-size: 18px;
    background: linear-gradient(-30deg, rgb(38, 148, 43), #66caa5) !important;
}

.content h3 label.danger{
    font-size: 15px;
    background: linear-gradient(-30deg, #f00, #fc8f8f) !important;
}

.content #message {
    width: 100%;
    height: 36px;
    line-height: 36px;
    float: left;
    text-align: center;
    font-style: italic;
    position: absolute;
    bottom: 0;
    left: 0;
}

.lds-ring div{
    width: 20px !important;
    height: 20px !important;
}

.lds-ring div:first-child{
    width: 40px !important;
    height: 40px !important;
    border-top: 4px solid #fff !important;
}


.alert-modal{
    inset: 0;
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .3);
    backdrop-filter: blur(4px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-modal .alert-body{
    height: max-content;
    width: 400px;
    overflow: visible;
    padding: 50px 25px 25px;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, .3);
    border-radius: 5px;
}

.alert-modal .alert-head{
    height: 60px;
    width: 60px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
    background-color: #fff;
    box-shadow: -5px 0 25px -5px rgba(0, 0, 0, .2);
    overflow: hidden;
}

.alert-modal .alert-head img{
    width: 100%;
}

.alert-modal .alert-content{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-modal .alert-content p{
    width: auto;
    letter-spacing: 1px;
    color: #555;
    font-size: 14px;
}

.hide{
    display: none !important;
}