main {
    margin-top: 0% !important;
}

hr.sep-2 {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, #fffb00, #ff0000, #00d9ff, #00ff22);
}

h2 {
    width: 71%;
    text-align: center;
    /* border-bottom: 1px solid #a39a9a; */
    line-height: 0.1em;
    margin: 20px 40px 21px;
}

h2 span {
    background: #fff;
    padding: 0 10px;
    color: #7c6e6e;
    font-size: 23px;
}

.draw-border {
    box-shadow: inset 0 0 0 4px #9b3939;
    color: #9b3939;
    transition: color 0.25s 0.0833333333s;
    position: relative;
}

.draw-border::before,
.draw-border::after {
    border: 0 solid transparent;
    box-sizing: border-box;
    content: '';
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    bottom: 0;
    right: 0;
}

.draw-border::before {
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-radius: 8px;
}

.draw-border::after {
    border-top-width: 1px;
    border-right-width: 1px;
    border-radius: 8px
}

.draw-border:hover {
    color: #ffe593;
}

.draw-border:hover::before,
.draw-border:hover::after {
    border-color: #bb3ab0;
    transition: border-color 0s, width 0.15s, height 0.15s;
    width: 100%;
    height: 100%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.draw-border:hover::before {
    transition-delay: 0s, 0s, 0.15s;
}

.draw-border:hover::after {
    transition-delay: 0s, 0.15s, 0s;
}

.btn {
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1.5;
    font: 700 1.2rem 'Roboto Slab', sans-serif;
    letter-spacing: 0.05rem;
}

.btn:focus {
    outline: 2px dotted #55d7dc;
}

input::placeholder {
    color: #000000 !important;
    font-size: 13px;
}

h2 {
    font-size: 20px;
    width: 68%;
    text-align: center;
    /* border-bottom: 1px solid #cfd0d1; */
    line-height: 0.1em;
    margin: 37px 56px 32px;
    color: #6f7881;
}

h2 span {
    background: #fff;
    padding: 0 10px;
}

.has-error {
    border-color: #ff0400 !important;
}

.pulse {
    color: #FFFF00 !important;
    animation: pulse 1s ease-out;
    -webkit-animation: pulse 1s ease-out;
    -webkit-animation-iteration-count: infinite !important;
}

@-webkit-keyframes pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}

.glow-on-hover {
    width: 110px;
    height: 56px;
    border: none;
    outline: none;
    color: #000;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    margin: 3px 3px;
    font-size: 16px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: 1px;
    left: -1px;
    background-size: 400%;
    z-index: -1;
    filter: blur(3px);
    width: calc(100% + 1px);
    height: calc(100% + 1px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
    border: 1px solid black;
}

.glow-on-hover:active {
    color: #000
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #f2f7f9;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}


form {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
    /* width: 25em; */
    padding: 1.2em;
    background-color: #ffffff;
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset; */
}
