*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    font-family: 'Roboto', sans-serif;
    background: transparent;
}

nav{
    height: 80px;
    width: 100%;
    background: rgb(14, 14, 54);
    position: fixed;
    background: transparent;
}

label.logo{
    font-size: 35px;
    font-weight: 900;
    color: white;
    padding: 0 20px;
    line-height: 80px;
    font-family: 'Roboto', sans-serif;
    background: transparent;
}

nav ul{
    float: right;
    margin-right: 40px;
    background: transparent;
}

nav li{
    display: inline-block;
    margin: 0 8px;
    line-height: 80px;
    background: transparent;
}

nav a{
    color: white;
    font-size: 18px;
    border: 1px solid transparent;
    padding: 7px  10px;
    border-radius: 3px;
    font-weight: bold;
    background: transparent;
}

a:active, a:hover{
    border: none;
    color: #3498db;
    transition: .5s;
    background: transparent;
}

nav #icon{
    color: white;
    font-size: 30px;
    line-height: 80px;
    float: right;
    margin-right: 40px;
    cursor: pointer;
    display: none;
    background: transparent;
}

@media (max-width: 1048px){
    label.logo{
        font-size: 32px;
        padding-left: 60px;
    }
    nav ul{
        margin-right: 20px;
    }
    nav a{
        font-size: 17px;
    }
}

@media (max-width: 909px){
    nav #icon{
        display: block;
    }
    nav ul{
        position: fixed;
        width: 100%;
        height: 100vh;
        background: rgb(14, 14, 54);
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }
    nav li{
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }
    nav a{
        font-size: 20px;
    }
    a.active,a:hover{
        border: none;
        color: #3498db;
    }
    nav ul.show{
        left: 0;  
    }
}

input {
    height: 40px;
    width: 100%;
    margin: 20px auto;
    border-left: none;
    border-right: none;
    border-top: none;
    color: white;
    background: rgb(14, 14, 54);
    padding-left:5px;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    background: transparent;

}

button {
    height: 40px;
    width: 100%;
    border-radius: 14px;
    margin-top: 30px;
    border: none;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14pt;
    border: 1px solid white;
}

button:hover{
    background: white;
    color: black;
}

form {
    width: 90%;
    margin:auto;
    text-align: center;
    margin-bottom: 0px;
    font-family: 'Roboto', sans-serif;
    background: transparent;
}

input:focus {
    outline: none;
    background: transparent;

}

.logo {
    color: white;
    font-family: sans-serif;
    font-size: 15pt;
    font-weight: 600;
    text-align: center;
    padding-top: 40px;
    font-family: 'Roboto', sans-serif;
    background: transparent;

}

.myform {
    border-radius: 14px;
    background: rgb(14, 14, 54);
    width: 40%;
    margin: auto;
    height: 600px;
    font-family: 'Roboto', sans-serif;
    background: transparent;
}

.myform a {
    text-decoration: none;
    color: white;
    font-family: 'Roboto', sans-serif;
    letter-spacing: .1em;
    margin-top: 43px;
    background: transparent;
}

 ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
     color: #cccccc;
   
}
.fa-cloud-upload{
font-size:90px;

}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #cccccc;
      }

:-ms-input-placeholder {
    /* IE 10+ */
     color: #cccccc;
     }

:-moz-placeholder {
    /* Firefox 18- */
    color: #cccccc;
  
}
@media screen and (max-width:500px){
    .myform{
        width:80%;
    }
}
@media screen and (max-width:800px){
    .myform{
        width:60%;
    }
}

.container{
    padding-top: 65px;
    background: transparent;
}

.email-p, .password-p, .username-p{
    color: red;
    background: transparent;

}

.acc-name{
    color: #3498db;
    background: transparent;
}

#banner{
    background-image: url(https://images.unsplash.com/photo-1617042375876-a13e36732a04?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80);
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    flex-direction: column;
}