*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.bodyBg{
    height: 100vh;
    width: 100vw;
    /* padding: 20px; */
    background-image: url("img/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
        position: fixed;    
    z-index: -1;
}

.bg {
    background: #0000009f !important;
}

.switcher {
    background: #ffffff79;
    border-radius: 10px;
}

span{
    font-size: 40px;
    margin-left: 40px;
    margin-right: 40px;
    cursor: pointer;
}

span:hover{
    color: blue;
}

span:active {
    color: blue;
}

form {
    margin-top: 1rem;
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #f5f5f5;
    padding: 6px 12px;
}


input {
    padding: 5px;
    background: transparent;
    border: none;
    color:  #f5f5f5;
}

input:focus {
    outline: none;
}

button{
    height: 18px;
    min-width: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    background-color: transparent;
    border: none;
    color: white;
}

::placeholder {
    color: white;
}

