/*

* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*/
.navbar
{
    display: flex;
    align-items: center;
    padding: 20px;
}

nav 
{
    flex: 1;
    text-align: right;
}

nav ul
{
    display: inline-block;
    list-style-type: none;
}

nav ul li
{
    display:  inline-block;
    align-items: center;
    padding: 20;
}

a
{
    text-decoration: none;
    color: #555;
}

p
{
    color: #555
}

.container
{
    max-width: 2050px;
    margin: auto;
}
/*
* image site 
*/
.row
{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}
.col-2 
{
    flex-basis: 50%;
    min-width: 300px;
    border-radius: 5px;
}

.col-2 img
{
    max-width: 100%;
    padding: 50px 0;
}

.col-2 h1
{
    font-size: 50px;
    line-height: 60px;
    margin: 25px 0;
}
/*
* image site 
*/
.account-page
{
    padding: 50px 0;
    background: radial-gradient(#fff,#fff1d4);
}

.form-container
{
    border-radius: 5px;
    background: #fff;
    width: 300px;
    height: 400px;
    position: relative;
    text-align: center;
    padding: 20px 0;
    margin: auto;
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-container span
{

    font-weight: bold;
    padding: 0 10px;
    cursor: pointer;
    width: 100px;
    display: inline-block;    
}

.form-container button
{
    color: white;
    font-weight: bold;
    padding: 0 10px;
    cursor: pointer;
    display: inline-block;    
}

.form-container form
{
    max-width: 300px;
    padding: 0 20px;
    position: absolute;
    top: 130px;
    transition: transform 1s;
}

form input
{
    width: 100%;
    height: 30px;
    margin: 10px 0;
    padding: 0 10px;
    border: 1px solid #ccc;
}

form .btn 
{
    width: 100%;
    border: none;
    cursor: pointer;
    margin: 10px 0;
}

#LoginForm 
{
    left: -300px;
}

#RegisterForm
{
    left: 0;
}

form a
{
    font-size: 12px;
}

#Indicator
{
    width: 100px;
    border: none;
    background-color: #ff523b;
    height: 3px;
    margin-top: 8px;
    transform: translateX(100px);
    transition: transform 1s;
}

.button 
{
  align-items: center;
  display: flex;
  height: 30px;
  background: #950000;
  border: none;
  outline: none;
  border-radius: 5px;
  overflow: hidden;
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;

}

.button:hover 
{
  background: #810000;
}

.button:active 
{
  background: #6e0000;
}

/*.button__text{}*/
.button__icon 
{
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  color: rgb(255, 255, 255);
  height: 100%;
}

.button__icon 
{
  align-items: center;    
  border: none;
  font-size: 1.5em;
  background: rgba(255, 255, 255, 0.137);
}

