* {
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    min-height: 100vh;
    animation-name: show;
  animation-duration: 6s;
  animation-iteration-count:infinite;
  position:relative;
}
@keyframes show {
    from {background-color:#54305b }
    to {background-color:plum }
  }

.container {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border-radius: 5px;
    width: 400px;
}

h2 {
    text-align: center;
    margin: 0 0 20px;
    color: black;
}

.form {
    padding: 30px 40px;
}
.text{
    padding-bottom: 1em;
}
.text a{
    text-decoration: none;
    cursor: pointer;
}
.form-control {
    margin-bottom: 10px;
    padding-bottom: 20px;
    position: relative;
}
.footer {
    background-color: rgb(37, 36, 36);
    padding: 50px 0 20px;
    text-align: center;
    position:absolute;
    bottom:0;
    left:0;
    right:0;
  }
  
.form-control label {
    display: block;
    color: rgb(119, 119, 119);
    margin-bottom: 10px;
}

.form-control input {
    border: 2px solid #f0f0f0;
    border-radius: 4px;
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 14px;
}

.form-control input:focus {
    outline: 0;
    color:#777;
}

.form-control.success input {
    border-color:var(--success-color);
}

.form-control.error input {
    border-color:var(--error-color);
}

.form-control small {
    color: var(--error-color);
    position: absolute;
    left: 0;
    bottom: 0;
    visibility: hidden;
}

.form-control.error small {
    visibility: visible;
}

.form button {
    cursor: pointer;
    background-color: #ef97d2;
    border: 2px solid #e80786;
    display: block;
    padding: 10px;
    width: 100%;
    font-size: 14px;
    border-radius: 4px;
    color:#fff;
    transition: all 1s ease-in-out;
}

.form button:hover {
    background-color: transparent;
    border: 2px solid aquamarine;
    color: rgb(1, 7, 5);
    transition: all 1s ease-in-out;
}

.form button:focus {
    outline: none;
}
