﻿/*https://www.svgbackgrounds.com/set/free-svg-backgrounds-and-patterns/*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

.grid {
    padding: 4px;
}

.text-danger {
    color: red;
    padding-bottom: 4px;
}

.container {
    height: 100vh;
    margin: 0 auto;
    position: relative;
}

    .container .form-1 {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 30%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #fff;
        width: 40%;
     
        border-radius: 4px;
    }

.form-1 h1 {
    text-align: center;
    margin-top: 0.7rem;
    margin-bottom: 1.5rem;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    border-width: 0;
    padding: 6px 0 7px 15px;
    border-style: solid;
    border-bottom-style: solid;
    border-bottom-color: rgb(66,66,66);
    border-bottom-width: 1px;
    -webkit-font-smoothing: antialiased;
    position: relative;
    color: #424242ff;
    cursor: text;
    display: flex;
    width: 100%;
    font-size: 1rem;
    box-sizing: border-box;
    align-items: center;
    font-weight: 400;
    line-height: 1.1876em;
    letter-spacing: .00938em;
    /* border: none;
    outline: none;
    border-bottom: 1px solid;
    background: none;
    margin: 0.9rem 2rem;
    font-size: 1rem;*/
}

.row {
    padding-bottom:15px;
}

label {
    margin: 0 2rem;
}

span {
    margin: 0 2rem;
    color: blue;
    cursor: pointer;
}

.button {
    margin: 2rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
    border: none;
    color:white;
    font-size: 14px;
    font-weight: 500;
    font-family: ''Roboto','Helvetica','Arial','sans-serif';' color: #fff;
   /* background-color: #698c6aff;*/
}

    .button :hover {
        background-color: rgb(88,116,89);
    }

/* ........///Sign-Up///......... */

p {
    text-align: center;
    font-weight: bolder;
}

h5 {
    color: rgb(66,66,66);
    font-family: 'Roboto','Helvetica','Arial','sans-serif';
    font-weight: 400;
    font-size: 24px;
    padding-top: 5px;
    padding-bottom: 20px;
    text-align: center;
}

.divider {
    border-bottom-color: #e0e0e0ff;
    border-bottom-width: 1px;
    border-style: solid;
    width: 100%;
}

/* ....///Media query///..... */
@media (max-width: 501px) {
    html {
        font-size: 15px;
    }

    .container .form-1 {
        width: 300px;
    }
}

@media (min-width: 501px) and (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .container .form-1 {
        width: 450px;
    }
}

@media (min-width: 765px) and (max-width: 1200px) {
    html {
        font-size: 18px;
    }

    .container .form-1 {
        width: 540px;
        height: 550px;
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    .container {
        height: 100vmax;
    }
}
