@import url('https://fonts.googleapis.com/css?family=Manrope&display=swap');
:root {
    --primary-color: #51459E;
    --secondary-color: #C566FF;
    --black-color: #333333;
}

body {
    background-color: #fff !important;
    overflow: auto;
    height: auto;
    margin: 0px;
    font-family: Manrope !important;
}

header {
    background: #F8F7FF;
    padding-left: 80px;
    display: flex !important;
    align-items: center;
    position: fixed;
    height: 70px;
    z-index: 100;
    top: 0px;
    left: 0px;
    right: 0px;
}

.app-body {
    margin-top: 75px;
    padding: 20px;
    overflow: hidden;
}

.secondary-text {
    color: var(--secondary-color);
}

.primary-text {
    color: var(--primary-color);
}

.black-text {
    color: var(--black-color)
}

.cursor-pointer {
    cursor: pointer;
}

.font-16 {
    font-size: 16px !important;
}

.font-20 {
    font-size: 20px !important;
}

.font-22 {
    font-size: 22px !important;
}

.font-24 {
    font-size: 24px !important;
}

.font-28 {
    font-size: 28px !important;
}

.word-break {
    word-break: break-word;
}

.card {
    background: #F8F7FF !important;
    box-shadow: 0px 4px 30px rgba(81, 69, 158, 0.2) !important;
    padding: 20px !important;
    width: 390px !important;
    box-sizing: content-box;
}

.required-input:after {
    content: " *";
    color: #dc3545;
}

input,
select {
    border: 1px solid #C4C4C4;
    border-radius: 5px;
    width: 100%;
    height: 35px;
    margin-top: 10px !important;
    margin-bottom: 20px !important;
    padding: 10px;
    background: white;
}

input:focus,
select:focus {
    outline: none;
}

.email-info {
    font-family: system-ui;
    color: grey;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: -15px;
}

.eye-show {
    margin: 18px -30px;
    cursor: pointer;
    color: var(--primary-color);
}

.primary-btn {
    background: var(--primary-color);
    box-shadow: 0px 4px 30px rgba(81, 69, 158, 0.2);
    border-radius: 5px;
    border: none;
    height: 44px;
    color: #FFFFFF;
    cursor: pointer;
}

.button:disabled {
    opacity: 0.75;
    cursor: default;
}

.error-field {
    outline: 1px solid red !important;
}

.input-error {
    color: red;
    font-size: 10px;
    margin-top: -18px;
    margin-bottom: 10px;
}


/* custom error styles start */

.alert {
    padding: 20px;
    color: white;
    opacity: 0.83;
    transition: opacity 0.6s;
    margin-bottom: 15px;
}

.custom-alert.success {
    background-color: #22c388;
}

.custom-alert.error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    width: auto;
}

.success-toast-top {
    top: 40px;
    z-index: 100 !important;
    bottom: auto !important;
}


/* custom error styles end */


/* Show error toast message style start */

#toast {
    visibility: hidden;
    width: fit-content;
    max-width: 400px;
    overflow-wrap: anywhere;
    right: 20px;
    text-align: left;
    border-radius: 10px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    font-size: 17px;
}

#toast.show-top {
    top: 80px;
    visibility: visible;
    -webkit-animation: fadein-top 0.75s;
    animation: fadein-top 0.75s;
}

.or-custom-border {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    width: 40%;
    margin: auto 10px;
}

@-webkit-keyframes fadein-top {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 80px;
        opacity: 1;
    }
}

@keyframes fadein-top {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 80px;
        opacity: 1;
    }
}


/* Toast style ends*/

footer {
    height: 60px;
    display: flex !important;
    align-items: center;
    padding-left: 30px;
    color: var(--black-color);
}


/* response page css start */

.response-msg-view {
    display: flex;
    margin-top: 75px;
    justify-content: center;
    align-items: center;
    overflow: hidden auto;
    height: calc(100vh - 135px);
}

.response-msg-card {
    background: #F8F7FF;
    box-shadow: 0px 4px 30px rgba(81, 69, 158, 0.2);
    border-radius: 5px;
    max-width: 450px;
    padding: 25px 30px;
}

.response-msg-icon {
    font-size: 9rem !important;
    color: var(--secondary-color);
}


/* response page css end */