@charset "UTF-8";
/* Fonts Form Google Font ::- https://fonts.google.com/  -::
@import url('https://fonts.googleapis.com/css?family=Abel|Abril+Fatface|Alegreya|Arima+Madurai|Dancing+Script|Dosis|Merriweather|Oleo+Script|Overlock|PT+Serif|Pacifico|Playball|Playfair+Display|Share|Unica+One|Vibur'); */
/* End Fonts */
/* Start Global rules */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/* End Global rules */

/* Start body rules */
body {
    /* Church/Spiritual theme - peaceful blue gradient */
    background: linear-gradient(135deg, #3578b4 0%, #2a5488 100%);
    
    /* Fallback for older browsers */
    background: -webkit-linear-gradient(135deg, #3578b4 0%, #2a5488 100%);
    background: -moz-linear-gradient(135deg, #3578b4 0%, #764ba2 100%);
    background: -o-linear-gradient(135deg, #3578b4 0%, #2a5488 100%);
    
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
}

/*|||||||||||||||||||||||||||||||||||||||||||||*/

/* End body rules */

/* Start form attributes */
form {
    width: 450px;
    min-height: 460px;
    height: auto;
    border-radius: 5px;
    margin: 2% auto;
    box-shadow: 0 9px 50px hsla(20, 67%, 75%, 0.31);
    padding: 2%;
    background-color: #fff7f0; /*#fff6ed #e4eaed*/
    /*background-image: linear-gradient(-225deg, #d5e8f2 50%, #edc4b9 50%);*/
}
/* Form Container */
form .con {
    display: -webkit-flex;
    display: flex;

    -webkit-justify-content: space-around;
    justify-content: space-around;

    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;

      margin: 0 auto;
}

header {
    margin: 2% auto 6% auto;
    text-align: center;
}
header h2 {
    font-size: 250%;
    color: #3e403f;
}
header p {letter-spacing: 0.03em; font-size: 15px;}

/*|||||||||||||||||||||||||||||||||||||||||||||*/

.input-item {
    background: #fff;
    color: #333;
    padding: 14.5px 0px 15px 9px;
    border-radius: 5px 0px 0px 5px;
}

/* Inputs  */
input[class="form-input"]{
    width: 250px;
    height: 50px;

    margin-top: 2%;
    padding: 15px;

    font-size: 16px;
    font-family: 'Abel', sans-serif;
    color: #5E6472;

    outline: none;
    border: none;

    border-radius: 0px 5px 5px 0px;
    transition: 0.2s linear;

}
input[id="txt-input"] {width: 250px;}

input:focus {
    transform: translateX(-2px);
    border-radius: 5px;
}

/*|||||||||||||||||||||||||||||||||||||||||||||*/

/* input[type="text"] {min-width: 250px;} */
/* Buttons  */
.button {
    display: inline-block;
    color: #252537;

    width: 280px;
    height: 50px;

    padding: 0 20px;
    background: #fff;
    border-radius: 5px;

    outline: none;
    border: none;

    cursor: pointer;
    text-align: center;
    transition: all 0.2s linear;

    margin: 7% auto;
    letter-spacing: 0.05em;
}

.submits {
    width: 48%;
    display: inline-block;
    float: left;
    margin-left: 2%;
}

.forgot-pass {
    background: transparent;
}

.sign-up {
    background: #65c0f7;
    padding: 0px;
    padding-top: 10px;
}

.login {
    background: #343a40; /* #f5c7ba #212529 */
    color: #fff;
    text-align: center;
    padding-bottom: 10px;
    font-weight: 400;
}

.button:hover {
    transform: translatey(3px);
    box-shadow: none;
}

.button:hover {
    animation: ani9 0.4s ease-in-out infinite alternate;
}
@keyframes ani9 {
    0% {
        transform: translateY(3px);
    }
    100% {
        transform: translateY(5px);
    }
}
