* {
    background-color: #fff;
    padding: 0px;
    margin: 0px;
    font-family:  'Poppins', sans-serif;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

header {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: fit-content;
    padding: 15px;
}

.logo {
    width: 10rem;
}

.view {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 35%;
    z-index: 999;
    justify-content: space-between;
    align-items: center;
}

.background {
    position: absolute;
    width: 100%;
    height: 35%;
    background: #1a1a1a;
    background: linear-gradient(180deg, rgba(26, 26, 26, 1) 0%, rgba(43, 43, 43, 1) 50%, rgba(26, 26, 26, 1) 100%);
    z-index: 1;
}

.topview {
    z-index: 999;
    background-color: transparent;
    color: white;
    padding-block: 15px;
}

.midview {
    padding: .3125rem;
    z-index: 999;
    background-color: transparent;
    color: white;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}

h1 {
    background-color: transparent;
    font-size: 22px;
    font-weight: 400;
}

.cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-block: 100px;
    gap: 15px;
}

.bttnEnterCall2 {
    background-color: #1B66C9;
    font-size: 14px;
    font-weight: 500;
    border: none;
    color: white;
    width: 50vw;
    border-radius: 999px;
    z-index: 99;
    padding-block: 15px;
    padding-inline: 15px;
}

h4 {
    font-weight: 500;
    text-align: center;
}

.users {
    display: flex;
    flex-direction: row;
    background-color: transparent;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
    height: 80px;
}

.users button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #1B66C9;
    box-shadow: -7px 9px 5px -9px rgba(0,0,0,0.87);
    -webkit-box-shadow: -7px 9px 5px -9px rgba(0,0,0,0.87);
    -moz-box-shadow: -7px 9px 5px -9px rgba(0,0,0,0.87);
    border: 1px solid rgb(32, 33, 36);
    border-radius: 999px;
    z-index: 999;
    margin-left: -10px;
}

.users img {
    border: 1px solid #1B66C9;
}

.users svg {
    background-color: transparent;
}

.bttnEnterCall {
    background-color: #1B66C9;
    font-size: 14px;
    font-weight: 500;
    border: none;
    color: white;
    width: 50vw;
    border-radius: 5px;
    padding-block: 10px;
    padding-inline: 15px;
}

.bottomview {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
    gap: 15%;
    align-items: end;
    z-index: 999;
    background-color: transparent;
    padding: 15px;
}

.bottomview svg {
    background-color: transparent;
}

.mute {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 999px;
    padding: 10px;
}

.controls {
    display: flex;
    background-color: transparent;
    flex-direction: row;
    gap: 25px;
}

.mic {
    fill: white;
}

.cam {
    display: flex;
    fill: white;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 999px;
    padding: 10px;
    transition: .3s ease-in-out;
}

.cam-off {
    background-color: #d93025; /* Vermelho estilo Meet */
}

.cam svg {
    pointer-events: none; /* Para o clique não afetar o SVG */
}

.whitespace {
    content: "";
    display: flex;
    width: 24px;
}