body {
    overflow: hidden;
}

.backdrop {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
}

.overflow-x-hidden {
    overflow-x: hidden
}

.ato-form {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 411px;
    min-width: 411px;
    max-width: 674px;
    height: 673px;

    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
    border-radius: 10px;

    background-color: #fff;
    -o-border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    box-shadow: 0px 4px 30px 0px rgb(0 0 0 / 25%);
    z-index: 3000;
}

.input-wrapper {
    width: 100%;
    padding: 16px 24px;
}

.label {
    font-family: 'Graphik';
    font-style: normal;
    font-weight: bold;
    font-size: 13px;
    line-height: 14px;
    margin-bottom: 9px;

}

.input {
    border: none;
    border-bottom: 1px solid #949597;
    display: flex;
    width: 100%;
    outline: none;
    padding: 15px;
    padding-left: 0;
    padding-bottom: 14px;
    margin-bottom: 5px;
    -o-transition: border 0.5s ease-out;
    -webkit-transition: border 0.5s ease-out;
    -moz-transition: border 0.5s ease-out;
    -ms-transition: border 0.5s ease-out;
    transition: border 0.5s ease-out;

    font-family: 'Graphik';
    font-style: normal;
    font-size: 16px;
}

.input:focus {
    border-bottom: 2px solid #7081a6;
}

.input::placeholder {
    color: #6D7878;
    font-family: 'Graphik';
    font-style: normal;
    font-size: 16px;
}



.input-sub {
    font-family: 'Graphik';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 125%;
    color: #6D7878;
}


.submit {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 32px;
    gap: 8px;

    width: 267px;
    height: 52px;

    background: #8413F5;
    border-radius: 16px;
    margin: auto;


    font-family: 'Graphik';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    border: none;;
}

.issue,
title {
    border: none;
    /* margin-left: -6px; */
}

.input.title {
    display: flex;
    justify-content: center;
    text-align: center;
    font-family: 'Graphik';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 125%;
    width: 100%;
    border: none;
}

.issue-wrapper {
    padding-bottom: 0;
}

.hide {
    display: none !important;
}

.success-box {
    width: 383px;
    height: 371px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
    -o-border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    margin: auto;
    margin-left: -5px;
}

.check {
    display: flex;
    flex: column;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    color: #fff;
    font-size: 1.5rem;
    -o-border-radius: 100%;
    background: #8413F5;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    border-radius: 100%;
}

.filler-image {
    display: block;
}

.success-content {
    font-family: 'Graphik';
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 145%;

    text-align: center;

    color: #090B0E;

    padding: 2rem
}

.success-title {
    color: rgba(132, 19, 245, 1);
    width: 335px;
    height: 17px;
    font-family: 'Graphik';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 17px;

    text-align: center;

    margin-bottom: 8px;
}

.error {
    color: rgb(175, 52, 52);
    font-weight: 700;
}

.error-wrapper {
    background-color: rgba(232, 110, 110, 0.961);
    color: rgba(255, 255, 255, 0.923);
    text-align: center;
    font-size: small;
    padding: .5rem;
}


/* Hide the div on mobile screens */
@media (max-width: 767px) {
    .filler-image {
        display: none;
    }
}

/* Show the div on tablet and desktop screens */
@media (min-width: 768px) {
    .filler-image {
        display: block;
    }
}