:root {
    background: #f5f6fa;
    color: #9c9c9c;
    font: 1rem "PT Sans", sans-serif;
}
html,
body {
    margin: 0;
    padding: 0;
}
.txttitle {
    font-size: xx-small;
    font-weight: 500;
    padding: 5px;
    color: #757575;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: sans-serif;    
}
.container {
    height: 95%;
}
a {
    color: inherit;
}
a:hover {
    color: #7f8ff4;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center;*/
}
.btn {
    display: inline-block;
    background: transparent;
    color: inherit;
    font: inherit;
    border: 0;
    outline: 0;
    padding: 0;
    transition: all 200ms ease-in;
    cursor: pointer;
}
.btn--primary {
    background: #7f8ff4;
    color: #fff;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    padding: 12px 36px;
}
.btn--primary:hover {
    background: #364181;
    transform: translateY(-3px);
    /* background: linear-gradient(to bottom, #302245 0, #364181 100%); */
}
.btn--primary:active {
    background: #365381;
    box-shadow: inset 0 0 10px 2px rgba(0, 0, 0, 0.2);
}
.btn--inside {
    margin-left: -96px;
}
.form__field {
    width: 360px;
    background: #fff;
    color: #a3a3a3;
    font: inherit;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1);
    border: 0;
    outline: 0;
    padding: 22px 18px;
}
.toast {
    width: 300px;
    outline: 0;
    background: #fff;
    color: #f5f5f5;
    padding: 1rem 2rem 1rem 3rem;
    text-align: center;
    border-radius: 1rem;
    position: relative;
    font-weight: 300;
    margin: 1rem 0;
    text-align: left;
    max-width: 16rem;
    opacity: 1;
    border: 0.15rem solid #fff2;
}
.toast:before {
    content: "";
    position: absolute;
    width: 44px;
    height: 44px;
    top: 20px;
    left: 20px;
    z-index: 0;
    border-radius: 50%;
    background: rgb(86, 174, 237);
}
.toast h3 {
    font-size: 1rem;
    margin: 10px;
    line-height: 1.35rem;
    font-weight: 600;
    position: relative;
    color: rgb(41, 113, 165);
}
/* === BASE HEADING === */
h1 {
    position: relative;
    padding: 0;
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-size: 40px;
    color: #080808;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
 }
.twelve h1 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 160px;
    text-align: center;
    margin: auto;
    white-space: nowrap;
    padding-bottom: 13px;
}
.twelve h1:before {
    background-color: #c50000;
    content: '';
    display: block;
    height: 3px;
    width: 75px;
    margin-bottom: 5px;
    animation: linex 1s;
}
 @keyframes linex  {
    0% {
           width: 75px;
     }
    50% {
           width: 155px;
      }
    100% {
           width: 75px;
     }
}
.twelve h1:after {
    background-color: #c50000;
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 3px;
    width: 75px;
    margin-bottom: 0.25em;
    animation: linex 1s;
}
.ReEdtxt {
    width: 360px;
    background: #fff;
    color: #a3a3a3;
    font: inherit;
    box-shadow: 0 1px 1px 0 rgba(80, 80, 80, 0.1);
    border: 0;
    outline: 0;
    padding: 15px 12px;
}
.bouncingball {
    background: #d6d6d6;
    color: rgb(255, 255, 255);
    padding: 12px;
    font-weight: bold;
    justify-items: center;
    border: 1px #d6d6d6 solid;
    justify-content: center;
    animation: bounce 5s;
    transform: translateY(0px);
    animation-iteration-count: infinite;
    position: absolute;
    margin: auto;
    width: auto;
    height: auto;
    border-radius: 100%;
    align-content: center;
    justify-content: center;
    box-shadow: #757575 3px 3px 5px;
}
@keyframes bounce {
    0% {
        top: 60px;
        -webkit-animation-timing-function: ease-in;
    }
    50% {
        top: 103px;
        height: auto;
        -webkit-animation-timing-function: ease-out;
        box-shadow: #ffffff 1px 1px 1px;
    }
    100% {
        top: 60px;
        -webkit-animation-timing-function: ease-in;
    }
}