*{
    margin: 0;
    padding: 0;
}
body{
    height: 100vh;
    box-sizing: border-box;
    font-family: 'Alata', sans-serif;
    background: url(../img/background.jpg);
    background-size: cover;
    background-position: center;
    
    background-repeat: no-repeat;
    
}

.main{
    width: 100%;
    height:100%;
}

#form{
    width:50%;
    height: 80%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 70px  30px;
}

.input{
    width: 40%;
    height: 30px;
    margin: auto;
}

.inputSearch{
    width: 200px;
    height: 30px;
    margin: auto;
    margin-right: 5px;
}

.description{
    width: 40%;
    height: 100px;
    margin: auto;
}


.text{
    width: 40%;
    height: 30px;
    margin: auto;
}

.headline{
    margin: auto;
    text-align: center;
    font-size: 5em;
    color:rgb(70, 68, 62);
}

#searchbar{
    
    
    width: 250px;
    margin: 50px 20px 50px 20px;

    
    flex-direction: row;
    justify-content: center;
    color: cornsilk;
    padding: 50px 20px 50px 20px;
    border-radius: 15px;
    display: inline-flex;
    position: fixed;
    top: 10px;
    right: 50px;
}


.login-box{
    width:320px;
    height: 420px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 70px  30px;
}


.avatar{
    width:100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left:50%;
    transform: translateX(-50%);
}

.loginhead{
    margin: 0;
    padding: 0 0 20px;
    text-align: center;
}

.login-box p{
    margin:0;
    padding:0;
    font-weight: bold;
}

.login-box input {
    width:100%;
    margin-bottom: 20px;
}

.login-box input[type="text"] , input[Type="password"] {

    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    outline: none;
    height: 40px;
    color: #fff;
    font-size: 16px;
}

.login-box input[type="submit"]{

    border: none;
    outline: none;
    height: 40px;
    border-radius: 20px;
    background: #1c8adb;
    color: #fff;
    font-size: 16px;
}

.login-box input[type="submit"]:hover{
    color: #000;
    background: #39dc79;
    cursor: pointer;
    transition: 800ms;
}
.login-box select{

    border: none;
    outline: none;
    height: 40px;
    border-radius: 20px;
    background: #1c8adb;
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
}
.search-box input[type="submit"]{

    border: none;
    outline: none;
    height: 40px;
    width:40px;
    border-radius: 20px;
    background: #1c8adb;
    color: #fff;
    font-size: 16px;
}

.search-box input[type="submit"]:hover{
    color: #000;
    background: #39dc79;
    cursor: pointer;
    transition: 800ms;
}

.logoutBTN{
    position: fixed;
    top: 20px;
    left: 20px;
    border: none;
    outline: none;
    height: 40px;
    width:100px;
    border-radius: 20px;
    background: #1c8adb;
    color: #fff;
    font-size: 16px;
}

.logoutBTN:hover{
    color: #000;
    background: #39dc79;
    cursor: pointer;
    transition: 800ms;
}

a{
    text-decoration: none;
    text-align: center;
    
    position: fixed;
    top: 20px;
    left: 20px;
    border: none;
    outline: none;
    height: 40px;
    width:100px;
    border-radius: 20px;
    background: #1c8adb;
    color: #fff;
    font-size: 16px;
}

