/* ------- Login ---------*/
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(90deg, #1d243d, #1d243d);
    background-size: cover;
    overflow: hidden;
    z-index: -1;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
}

.button {
    text-align: center;
    border: none;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    font-size: 18px;
}

.tyoe {
    color: #367ebd;
}

.tyoe::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 40%;
    border: 2px solid;
    transition: all 0.6s ease;
    border-radius: 2px;
}

.tyoe::before {
    content: '';
    position: absolute;
    width: 40%;
    height: 40%;
    border: 2px solid;
    transition: all 0.6s ease;
    border-radius: 2px;
}

.tyoe::after {
    bottom: 0;
    right: 0;
    border-top-color: transparent;
    border-left-color: transparent;
    border-bottom-color: #367ebd;
    border-right-color: #367ebd;
}

.tyoe::before {
    top: 0;
    left: 0;
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-top-color: #367ebd;
    border-left-color: #367ebd;
}

.tyoe:hover::after {
    width: 100%;
    height: 100%;
}

.tyoe:hover::before {
    width: 100%;
    height: 100%;
}