/* Form Input Styles  */
:root{
    --mlm-field-border-color: rgba(208, 213, 221, 1);
    --mlm-field-box-shadow:0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    --mlm-global-blue: #045c8c;
    --mlm-global-blue-lighter: rgba(2, 101, 156, 1);
    --mlm-global-blue-light: rgba(110, 193, 228, 1);
    --mlm-gradient: linear-gradient(90deg, var(--mlm-global-blue) 0%, var(--mlm-global-blue-light) 100%);
}
body{
    font-family: "Inter", sans-serif;
}
/* General Input  */
.mlm-field-group input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]), 
.mlm-field-group select,
.mlm-field-group textarea
 {
    border: 1px solid var(--mlm-field-border-color) !important;
    padding: 10px;
    box-shadow: var(--mlm-field-box-shadow);
    border-radius: 8px;
    width: 100%;
    max-height: 43px;
}
.mlm-field-group input:focus,
.mlm-field-group select:focus,
.mlm-field-group textarea:focus
{
    border: 1px solid var(--mlm-global-blue) !important;
    outline: none;
}
.mlm-field-group{
    margin-bottom: 30px;
    flex-grow: 1;
}
.mlm-field-group label{
    margin-bottom: 10px;
    font-weight: 500;
}
.mlm-inline-fields-group{
    display: flex;
    gap: 10px;
    width: 100%;
}
.mlm-button,
form .mlm-button,
.mlm-field-group input[type="submit"],
.mlm-field-group .primary-action{
    /* width: 100%; */
    padding: 10px;
    gap: 10px;
    border-radius: 8px;
    opacity: 0px;
    box-shadow: var(--mlm-field-box-shadow);
    border:none !important;
    display: block;
    text-align: center;
    width: fit-content;
}
.mlm-button:focus{
    outline: none;
}
/* Form Input Styles  */
.dark-ae-button{
    background-color: var(--mlm-global-blue) !important;
    color:white !important;
}
.light-ae-button{
    background-color: var(--mlm-global-blue-light);
    color:white !important;
}
.white-ae-button{
    background-color: white;
    color: rgba(142, 142, 142, 1) !important;
}
.mlm-button-dark-border{
    border: 1px solid var(--mlm-global-blue) !important;
    color: var(--mlm-global-blue);
}
.mlm-button-dark-border:hover{
    background-color: var(--mlm-global-blue) !important;
    color: white;
}
.mlm-button-group{
    display: flex;
    gap: 5px;
}

/* Notifications  */
.mlm-notice-box{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    z-index: 50;
    padding: 0.75rem;
    position: fixed;
    bottom: 0;
    left: 0;
}
.mlm-notice-box{
    --primary: #0676ed;
    --background: #222b45;
    --warning: #f2a600;
    --success: #12c99b;
    --error: #e41749;
    --dark: #151a30;
}
.mlm-notification{
    position: relative;
    display: flex;
    align-items: center;
    color:white;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: bold;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-radius: 0.375rem;
    opacity: 0;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
    margin-bottom: 0.25rem;
}
.mlm-notification svg{
    width: 20px;
    margin-right: 10px;
}
.mlm-notification p{
    margin: 0;
}
.mlm-notification.active{
    opacity: 1;
}
.mlm-notification-success{
    background-color: rgba(16, 185, 129);
}
.mlm-notification-info{
    background-color: rgba(59, 130, 246, 1);	

}
.mlm-notification-error{
    background-color: rgba(239, 68, 68, 1);
}
.mlm-notification-warning{
    background-color: rgba(245, 158, 11, 1);
}
/* Notifications Ended  */
.mlm-form-response{
    text-align: center;
    font-weight: 500;
}
.mlm-form-response.error{
    color: red;
}
.mlm-form-response.success{
    color: #12c99b;
}
button.disabled{
    background-color: #cfd6eb !important;
    color: black;
}