.alert {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
     max-width: 100vw;
}
.alert-popup {
    margin: 70px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 400px;
    max-width: 80vw;
    position: relative;
    transition: all 5s ease-in-out;
}
.alert-error {
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: none;
    font-family: var(--font);
    font-size:1rem;
    font-weight: 400;
    line-height: 1.43;
    letter-spacing: 0.01071em;
    background-color: rgb(253, 237, 237);
    display: flex;
    padding: 6px 16px;
    color: rgb(95, 33, 32);
    width: 95%;
    margin-bottom: 10px;
}
.alert-error i{
    color: rgb(211, 47, 47);
    margin-right: 20px;
}
.alert-error span {
    color: rgb(95, 33, 32);
    overflow-wrap: anywhere;
}
.alert-warning{
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: none;
    font-family: var(--font);
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.43;
    letter-spacing: 0.01071em;
    background-color: rgb(255, 244, 229);
    display: flex;
    padding: 6px 16px;
    color: rgb(102, 60, 0);
    width: 95%;
    margin-bottom: 10px;
}
.alert-warning i {
    color: rgb(237, 108, 2);
    margin-right: 20px;
}
.alert-warning span {
    color: rgb(95, 33, 32);
    overflow-wrap: anywhere;
}
.alert-info {
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: none;
    font-family: var(--font);
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.43;
    letter-spacing: 0.01071em;
    background-color: rgb(215, 246, 253);
    display: flex;
    padding: 6px 16px;
    color: rgb(1, 67, 97);
    width: 95%;
    margin-bottom: 10px;
}
.alert-info i {
    color: rgb(2, 136, 209);
    margin-right: 20px;
}
.alert-info span {
    color: rgb(1, 67, 97);
    overflow-wrap: anywhere;
}
.alert-success {
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: none;
    font-family: var(--font);
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.43;
    letter-spacing: 0.01071em;
    background-color: rgb(237, 247, 237);
    display: flex;
    padding: 6px 16px;
    color: rgb(30, 70, 32);
    width: 95%;
    margin-bottom: 10px;
}
.alert-success i {
    color: rgb(46, 125, 50);
    margin-right: 20px;
 }
.alert-success span {
    color: rgb(30, 70, 32);
    overflow-wrap: anywhere;
 }
