*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    background-color: #FAFAFA;
}
.error {
    color: #eb5757;
}

body {
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
.form-content > label {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: .01em;
    color: rgba(0,0,0,.5);
    text-align: left;
    margin-bottom: 5px;
    box-sizing: border-box;
    vertical-align: middle;
}
.input-error {
    display: flex;
    justify-content: center;
    font-weight: 400;
    line-height: 20px;
    color: #eb5757;
}

.logo-login {
    display: flex;
    justify-content: center;
    width: 100%;
}

.logo-login > img {
    margin-bottom: 46px;
    width: 386px;
}

@media only screen and (max-width: 767px) {
    .logo-login > img {
        width: 100%;
    }
}

h1 {
    font-weight: 700;
    color: #8a97a0;
    text-align: center;
    line-height: 1.5em;
    margin-bottom: 1.2em;
    margin-top: 0.2em;
}

a {
    font-size: 0.98em;
    color: #8a97a0;
    text-decoration: none;
}

a:hover {
    color: green;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    padding: 6%;
    margin: 0;
}

form {
    background-color: #FFF;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 40px -14px rgba(0, 0, 0, 0.25);
}

form input {
    color: #606266;
    background-color: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03) inset;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    padding: 1em;
    margin-bottom: 1.2em;
    width: 100%;
}
form input::-webkit-input-placeholder {
    color: #dcdfe6;
}

form input:focus {
    outline: none;
}

.button {
    font-weight: 600;
    text-align: center;
    font-size: 19px;
    color: #FFF;
    background-color: #28a745;
    width: 100%;
    border: none;
    border-radius: 4px;
    padding: 0.8em;
    margin-top: 1em;
    margin-bottom: 1em;
    cursor: pointer;
    overflow: hidden;
    transition: all 200ms ease-in-out;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
}

.button:hover {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.button span {
    position: relative;
    z-index: 1;
}

.button .circle {
    position: absolute;
    z-index: 0;
    background-color: #35A556;
    border-radius: 50%;
    transform: scale(0);
    opacity: 5;
    height: 50px;
    width: 50px;
}

.button .circle.animate {
    animation: grow 0.5s linear;
}

@keyframes grow {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

.button .signup-message {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
    form {
        padding: 2rem 2rem 3em;
    }
}

/* Smartphones (landscape) ----------- */
@media only screen
and (min-width : 321px) {
    form {
        padding: 2rem 2rem 3em;
    }
}

/* Smartphones (portrait) ----------- */
@media only screen
and (max-width : 320px) {
    form {
        padding: 2rem 2rem 3em;
    }
}

/* iPads (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px) {
    form {
        width: 33.33%;
        padding: 2rem 5rem 3em;
    }
}

/* iPads (landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {
    form {
        width: 33.33%;
        padding: 2rem 5rem 3em;
    }
}

/* iPads (portrait) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {
    form {
        width: 66.66%;
        padding: 2rem 5rem 3em;
    }
}
/* Desktops and laptops ----------- */
@media only screen
and (min-width : 1224px) {
    form {
        width: 33.33%;
        padding: 2rem 5rem 3em;
    }
}

/* Large screens ----------- */
@media only screen
and (min-width : 1824px) {
    form {
        width: 33.33%;
    }
}

