nav {
    background-color: #363062;
}

.nav-right .nav-search input {
    color: white ;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
}

.nav-right .nav-search div {
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
}

nav input::placeholder {
    color: white ;
}

.login {
    width: 100%;
    height: 503px;
    background: url(../Images/login\ background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form {
    width: 300px;
    height: 380px;
    /* border: 2px solid #000; */
    background-color: transparent;
    backdrop-filter: blur(14px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 25px;
    padding: 20px;
}

.login-form>h3 {
    text-align: center;
}

#show-alert {
    width: 100%;
    display: inline;
    width: 100%;
    height: 50px;
    color: red;
    font-size: 15px;
    font-family: 'Allerta', sans-serif;
}

.username label,
.password label {
    font-weight: 100;
    margin-bottom: 10px;
}

.username input,
.password input {
    width: 200px;
    margin-bottom: 20px;
    background-color: transparent;
    outline: none;
    border: none ;
    border-bottom: 2px solid #000;
    color: #5a5a5a;
    font-size: 14px;
}

#password,
#username,
label {
    position: relative;
    left: 28px;
}


.login-form #login-btn{
    width: 200px;
    height: 25px;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
    background-color: #FB4906;
    color: #fff;
    border: none;
    position: relative;
    left: 28px;
}

.login-form #login-btn:hover {
    background-color: #cd592e;
}

.create-acount{
    margin-top: 10px;
    text-align: center;
    color: black;
}

.create-acount>h3 {
    font-weight: 100;
    font-size: 13px;
    margin-top: 20px;
}

.create-acount>a {
    color: rgb(4, 63, 102);
    color: #363062;
}


@media (max-width: 480px) {

    .login {
        height: 603px;
    }

    .create-acount>a {
        color:white;
    }

    .create-acount>h3 {
        color:white;
    }
}