*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

section{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-image: url(login.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgb(255, 255, 255, 0.4);
    background-blend-mode: lighten;
}

header{
    position: relative;
    top: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo{
    position: relative;
    color: #000;
    font-size: 30px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 1px;
}

header .navigation a{
    color: #9477cb;
    background: transparent;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 2px 15px;
    border-radius: 20px;
}

header .navigation a:not(:last-child){
    margin-right: 30px;
}

header .navigation a:hover{
    color: white;
    background: #9477cb;
}

.content{
    max-width: 1000px;
    margin: 60px 100px;
}

.content .info h2{
    color: black;
    font-size: 55px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 60px;
    margin-bottom: 30px;
}

.content .info p{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 40px;
}

.content .sign-btn{
    color: white;
    background: #9477cb;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
    transition-property: background;
}

.content .sign-btn:hover {
    background: hsl(285, 69%, 64%);
}


.loginbox{
    width: 320px;
    height: 420px;
    background-color: rgb(255, 255, 255, 0.8);
    background-blend-mode: lighten;
    border-radius: 5px;
    color: hsl(0, 0%, 0%);
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 70px 30px;
}

h2{
    margin: 0;
    padding: 0 0 20px;
    text-align: center;
    font-size: 35px;
}

.loginbox p{
    margin: 0;
    padding: 0;
    font-weight: bold;
}

.loginbox input{
    width: 100%;
    margin-bottom: 20px;
}

.loginbox input[type="text"], input[type="password"] {
    border: none;
    border-bottom: 1px solid rgb(58, 58, 58);
    background: transparent;
    outline: none;
    height: 40px;
    color: black;
    font-size: 16px;
}

.loginbox a{
    text-decoration: none;
    font-size: 12px;
    line-height: 20px;
    color: #500A8E;
}

.loginbox a:hover {
    color: #ffc107;
}

.loginbox .login-btn{
    color: #fff;
    background: #9477cb;
    text-decoration: none;
    font-weight: 500;
    font-size: large;
    letter-spacing: 1px;
    text-transform: capitalize;
    padding: 3px 15px;
    border-radius: 20px;
}

.loginbox .login-btn:hover{
    color: white;
    background: #C365E3;
}

.loginbox .start-btn{
    color: #fff;
    background: #9477cb;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 500;
    font-size: large;
    letter-spacing: 1px;
    padding: 2px 15px;
    border-radius: 20px;
}

.loginbox .start-btn:hover{
    color: white;
    background: #C365E3;
}

.loginbox input[type="button"] {
    border: none;
    background: #9477cb;
    outline: none;
    height: 40px;
    color: #fff;
    font-size: 18px;
    border-radius: 20px;
}

.loginbox input[type="button"]:hover {
    cursor: pointer;
    background: #C365E3;
    color: white;
} 

.loginbox button{
    border: none;
    background: #9477cb;
    outline: none;
    height: 40px;
    color: #fff;
    font-size: 18px;
    border-radius: 20px;
}

.loginbox button:hover {
    cursor: pointer;
    background: #C365E3;
    color: white;
} 