* {
    font-family: "Roboto", sans-serif;
}

.custom-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 14px 24px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInOut 4s ease forwards;
}

.success-toast {
    background-color: #333;
}

.error-toast {
    background-color: #d9534f;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
        display: none;
    }

    10% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        display: block;
    }

    90% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        display: block;
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
        display: none;
    }
}

/* font-family: "Noto Sans", sans-serif; */

section.form-page {
    position: relative;
    z-index: 1;
}

section.form-page::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    background-image: url(../image/form-shape.png);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: cover;
}

h2.sec-heading {
    font-size: 55px;
    font-weight: 700;
    color: #000;
}

input.form-control {
    border-radius: 0;
    border-color: #afafaf;
    position: relative;
    padding: 10px;
}

input.form-control:focus {
    box-shadow: none;
}

span.password-show {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    cursor: pointer;
    height: 100%;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-input {
    position: relative;
}

button.btn-submit {
    border: none;
    width: 100%;
    padding: 15px;
    display: block;
    margin-top: 30px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    background-image: linear-gradient(to right, #2f57ef, #b966e7, #b966e7, #2f57ef);
    color: #fff;
    transition: all 0.7s;
}

button.btn-submit:hover {
    background-image: linear-gradient(to right, #b966e7, #2f57ef, #2f57ef, #b966e7);
}