/* register.css file^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */

body{
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #888;
    line-height: 30px;
    background-image: url('../images/ocean.jpg');
    background-size: cover;
    /* background-color: #3875C5; */
}

.wreper{
    display: flex;
}

.top-content{
    color: white;
    margin-top: 75px;
    align-items: center;
    text-align: center;
}

.signin-form{
    height: 550px;
    width: 300px;
    border-radius: 5px;
    margin: 10px;
    margin-left: 200px;
}

.form-top-left{
    background-color: rgba(0, 0, 0, 0.651);
    border-radius: 5px 5px 0px 0px;
    padding: 0px 25px;
    color: white;
}

.form-bottom{
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0 0 5px 5px;
    padding: 0 25px;
    margin-top: -16px;
}

.signup-form .form-bottom{
    float: right;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0 0 5px 5px;
    padding: 0 25px;
    margin-top: -16px;
    margin-bottom: 150px;
}

input{
    width: 100%;
    height: 30px;
    border-radius: 3px;
    padding-left: 5px;
    border: 0px;
    margin-bottom: 5px;
}

.form-bottom button{
    background-color: rgb(98, 153, 235);
    border-color: rgb(98, 153, 235);
    border: 0px;
    width: 80%;
    height: 30px;
    margin-top: 30px;
    border-radius: 5px;
    margin-left: 25px;
    margin-bottom: 10px;
}


.form-bottom button:hover{
    background-color: rgb(153, 230, 230);
}

.signup-form{
    /* height: 550px; */
    width: 300px;
    border-radius: 5px;
    margin: 10px;
    margin-right: 200px;
}

.footer{
    color: white;
    margin-top: 20px;
    text-align: center;    
}

hr{
    opacity: 0.6;
}