.fuzzy_div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background-color: transparent;
    position: relative;
}

.login_form {
    width: fit-content;
    height: fit-content;
    background: #f0f0f0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    margin: 5px;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}


.login_btn_area {
    display: flex;
    flex-direction: column;
}

.login_title {
    text-align: center;
}

.login_logo {
    width: 300px;
    height: 300px;
}

.sign_up_logo {
    width: 250px;
    height: 250px;
}

input[type=submit] {
    border-radius: 10px;
    border-color: transparent;
    box-shadow: 0px 0px 5px -1px #000000c7;
    padding: 4px;
}

.input_1 {
    border-radius: 10px;
    border-color: transparent;
    box-shadow: 0px 0px 5px -1px #000000c7;
    padding: 4px;
}

.btn_1 {
    border-radius: 10px;
    border-color: transparent;
    box-shadow: 0px 0px 5px -1px #000000c7;
    cursor: pointer;
    padding: 4px;
    transition: 0.3s ease-in-out;
}

.btn_1:hover {
    color: white;
    background-color: rgb(54, 54, 54);
}

.btn_2 {
    border-radius: 10px;
    border-color: transparent;
    box-shadow: 0px 0px 5px -1px #000000c7;
    cursor: pointer;
    padding: 4px;
    transition: 0.3s ease-in-out;
    color: #f85700;
}

.btn_2:hover {
    color: white;
    background-color: #ed3e07;
    box-shadow: 0px 0px 5px -1px #ffc400c7;
}

.show_hide_btn {
    background-image: url(../assets/show.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 20px;
    margin-left: 10px;
    -webkit-box-shadow: 0px 0px 17px 5px #9c9c9cb5;
    -moz-box-shadow: 0px 0px 17px 5px #9c9c9cb5;
    box-shadow: 0px 0px 17px 5px #9c9c9cb5;
}

.password_div {
    display: flex;
    align-items: center;
}

body {
    margin: 0;
    background-color: gainsboro;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    /* background: linear-gradient(-45deg, #f85700,
            #fa8232,
            #ffcc00);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite; */

    height: fit-content;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.login_body {
    margin: 0;
    background-color: gainsboro;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: linear-gradient(-45deg, #f85700,
            #fa8232,
            #ffcc00);
    background-size: 400% 800%;
    animation: gradient 15s ease infinite;
    height: fit-content;
}

/* home page setup */

.master_div {
    display: flex;
    justify-content: start;
    /* align-items: center; */
    height: 100%;
    width: 100%;
    background-color: transparent;
    position: relative;
}

/* menu setup */

.menu_container {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 250px;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    padding: 10px;
    /* margin: 10px; */
    background: linear-gradient(-45deg, #f82c00, #fa8232, #ffd429);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    /* border-radius: 8px;*/
}

.menu_option {
    height: 30px;
    border-radius: 10px;
    background-color: rgb(231, 231, 231);
    border-color: transparent;
    box-shadow: 0px 0px 5px -1px #000000c7;
    cursor: pointer;
    margin: 10px;
    padding: 5px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    transition: 0.2s ease-in-out;
    align-items: center;
}

.menu_option:hover {
    color: white;
    background-color: rgb(54, 54, 54);
}

.sub_menu_option {
    width: 89%;
    height: 30px;
    border-radius: 10px;
    border-color: transparent;
    box-shadow: 0px 0px 5px -1px #000000c7;
    cursor: pointer;
    margin: 5px 10px 5px 10px;
    padding: 5px;
    z-index: +1;
    transition: 0.2s ease-in-out;
    display: flex;
    align-items: center;
}

.sub_menu_option:hover {
    color: white;
    background-color: rgb(54, 54, 54);
}

.sub_menu_title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 30px;
}

.icon {
    background-image: url(../assets/down.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-color: whitesmoke;
    background-size: 50%;
    border: none;
    border-color: transparent;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 20px;
    margin-left: 130px;
    -webkit-box-shadow: 0px 0px 17px 5px #9c9c9cb5;
    -moz-box-shadow: 0px 0px 17px 5px #9c9c9cb5;
    box-shadow: 0px 0px 17px 5px #9c9c9cb5;
}

.sub_menu {
    border-radius: 0px 0px 10px 10px;
    background-color: rgb(231, 231, 231);
    border-color: transparent;
    box-shadow: 0px 0px 5px -1px #000000c7;
    margin: -20px 10px 10px 10px;
    padding-top: 20px;
    padding-bottom: 10px;
    display: none;
    opacity: 0;
    flex-direction: row;
    flex-wrap: wrap;
    z-index: -1;
    transition: 0.2s ease-in-out;
}

/* .transform {
    -webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -o-transition: all 2s ease;
    -ms-transition: all 2s ease;
    transition: all 2s ease;
} */

/* .sub_menu-active {
    border-radius: 0px 0px 10px 10px;
    background-color: rgb(231, 231, 231);
    border-color: transparent;
    box-shadow: 0px 0px 5px -1px #000000c7;
    margin: -20px 10px 10px 10px;
    padding-top: 20px;
    padding-bottom: 10px;
    display: flex;
    opacity: 1;
    flex-direction: row;
    flex-wrap: wrap;
    z-index: -1;
    transition: 0.2s ease-in-out;
} */

.menu_logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 160px;
    height: 160px;
    filter: drop-shadow(10px 7px 5px rgba(97, 97, 97, 0.655));
    margin: 10px;
}

/* devices divs */
.device_container {
    width: 80%;
    height: fit-content;
    /* background: rgba(255, 255, 255, .05); */
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.25); */
    /* backdrop-filter: blur(10px); */
    border-radius: 8px;
    padding: 30px 0px 30px 0px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    align-items: center;
    flex-direction: column;
    overflow-y: auto;
}

.devices {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: whitesmoke;
    width: 95%;
    /* height: 85px; */
    /* padding-left: 10px; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    align-items: center;
}

.devices_option {
    border-radius: 10px;
    background-color: rgb(231, 231, 231);
    border-color: transparent;
    box-shadow: 0px 0px 5px -1px #000000c7;
    width: 100%;
    height: 55px;
    margin: 10px;
    padding-left: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    transition: 0.2s ease-in-out;
    align-items: center;
    justify-content: space-between;
    align-content: center;
}

.devices_option:hover {
    transform: scale(1.05);
    color: white;
    background-color: rgb(54, 54, 54);
}

.signal_icon {
    background-size: 50%;
    border: none;
    border-color: transparent;
    width: 30px;
    height: 30px;
    /* background-color: white; */
    cursor: pointer;
    /* border-radius: 20px; */
    /* margin-left: 130px; */
    /* -webkit-box-shadow: 0px 0px 17px 5px #9c9c9cb5;
    -moz-box-shadow: 0px 0px 17px 5px #9c9c9cb5;
    box-shadow: 0px 0px 17px 5px #9c9c9cb5; */
}

.cell_number {
    /* margin-left: 150px; */
}

.device_name {
    width: 300px;
}

/* device button styles */
.device_button {
    border-radius: 10px;
    background-color: rgb(231, 231, 231);
    border-color: transparent;
    box-shadow: 0px 0px 5px -1px #000000c7;
    cursor: pointer;
    width: 200px;
    height: 30px;
    margin: 10px 20px 10px 10px;
    /* padding: 5px; */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    transition: 0.2s ease-in-out;
    align-items: center;
    text-align: center;
    align-content: center;
    justify-content: space-evenly;
}

.yes_btn {
    width: 30%;
    border-radius: 10px;
    background-color: #2bff00a2;
    border-color: transparent;
    box-shadow: 0px 0px 5px -1px #2bff00a2;
    cursor: pointer;
    /* margin: 10px 20px 10px 10px; */
    /* padding: 5px; */
    transition: 0.2s ease-in-out;
    text-align: center;
}

.big_yes_btn {
    background-color: #2bff00a2;
    box-shadow: 0px 0px 5px -1px #2bff00a2;
    border-radius: 10px;
    border-color: transparent;
    cursor: pointer;
    width: 200px;
    height: 30px;
    margin: 10px 20px 10px 10px;
    /* padding: 5px; */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    transition: 0.2s ease-in-out;
    align-items: center;
    text-align: center;
    align-content: center;
    justify-content: space-evenly;
}

.no_btn {
    width: 30%;
    border-radius: 10px;
    background-color: #ff8800a2;
    border-color: transparent;
    box-shadow: 0px 0px 5px -1px #ff8800a2;
    cursor: pointer;
    /* margin: 10px 20px 10px 10px; */
    /* padding: 5px; */
    transition: 0.2s ease-in-out;
    text-align: center;
}

/* event log iframe */
.event_log_iframe {
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-color: transparent;
    background-color: whitesmoke;
    padding: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    align-items: center;
    margin: 0px 0px 0px 30px;
    overflow-y: scroll;
}

.signal_log_iframe {
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-color: transparent;
    background-color: whitesmoke;
    padding: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    align-items: center;
    margin: 0px 30px 0px 0px;
    overflow-y: scroll;
}

.iframe_master {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    background-color: transparent;
    position: relative;
    align-content: flex-start;
    overflow-y: scroll;
}

.iframe_master .device_container {
    width: 100%;
    height: fit-content;
    /* background: rgba(255, 255, 255, .05); */
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.25); */
    /* backdrop-filter: blur(10px); */
    border-radius: 8px;
    padding: 30px 0px 30px 0px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    align-items: center;
    flex-direction: column;
    /* overflow-y: scroll; */
}

.flex_row {
    display: flex;
    flex-direction: row;
    column-gap: 30px;
    width: 100%;
    justify-content: center;
}

.flex_column {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
}

.auth_nums_iframe {
    width: 95%;
    height: 300px;
    /* height: fit-content; */
    background: whitesmoke;
    border-color: transparent;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    /* padding: 0px 20px 0px 20px; */
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    align-items: center;
    flex-direction: column;
    overflow-y: scroll;
}

.user_iframes {
    width: 95%;
    height: 300px;
    /* height: fit-content; */
    background: whitesmoke;
    border-color: transparent;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    /* padding: 0px 20px 0px 20px; */
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    align-items: center;
    flex-direction: column;
    overflow-y: scroll;
}

.settings_group {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    width: 95%;
    height: fit-content;
    align-items: center;
    justify-content: space-evenly;
}

.name_input {
    border-radius: 10px;
    background-color: rgb(231, 231, 231);
    border-color: transparent;
    box-shadow: 0px 0px 5px -1px #000000c7;
    width: 200px;
    height: 30px;
    padding-left: 5px;
    /* border-color: transparent; */
}

.policy_div {
    width: 60%;
    height: fit-content;
    background: #f0f0f0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    margin: 0px;
    padding: 6vw;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.policy_title {
    font-size: 3vw;
}

.small_title {
    font-size: 2vw;
    margin-bottom: 0vw;
    margin-top: 0vw;
}

.privacy_p {
    font-size: 1vw;
    text-align: center;
    width: 80%;
    margin-bottom: 0vw;
}

.fuzz_div {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: fit-content;
    width: 100%;
    background-color: transparent;
    position: relative;
}

.list_points {
    width: 80%;
    font-size: 1vw;
}

.hr_policy {
    width: 60%;
    background-color: #ed3e07;
    height: 4px;
    border-radius: 50px;
    border-color: transparent;
    margin: 2vw 0vw;
}

.hr_small {
    width: 40%;
    background-color: #ffb119;
    height: 4px;
    border-radius: 50px;
    border-color: transparent;
    margin: 2vw 0vw;
}

.user_card {
    width: 30%;
    height: fit-content;
    background-color: whitesmoke;
    border-radius: 10px;
    box-shadow: 0px 0px 5px -1px #000000c7;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
}

.settings_row {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    width: 85%;
    height: fit-content;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 2vw;
    row-gap: 1.5vw;
}

.policy_popup {
    display: none;
    position: absolute;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    z-index: 1000;
    overflow-y: scroll;
    background-color: #0000005e;
    box-shadow: 0px 0px 5px -1px #000000c7;
    column-gap: 1vw;
    animation: slideInOut 0.5s ease-in-out;
}

@keyframes slideInOut {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    50% {
        opacity: 0.5;
        visibility: visible;
        transform: translateY(0);
    }

    100% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@keyframes hide_animation {
    0% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    50% {
        opacity: 0.5;
        visibility: visible;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        visibility: hidden;
        display: none;
    }
}

.policy_iframe {
    border-radius: 10px;
    border-color: transparent;
    box-shadow: 0px 0px 15px 2px #000000c7;
    height: 30vw;
    width: 35vw;
}


.close_btn_iframe {
    border-radius: 10px;
    border-color: transparent;
    background-color: whitesmoke;
    box-shadow: 0px 0px 5px -1px #000000c7;
    cursor: pointer;
    padding: 4px;
    transition: 0.3s ease-in-out;
    height: 30px;
    width: 30px;
    margin-left: 0vw;
    margin-top: -33vw;
}

@media only screen and (max-width: 650px) {

    .sign_up_logo {
        width: 200px;
        height: 200px;
    }

    .policy_div {
        width: 75%;
        height: fit-content;
        background: #f0f0f0;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        margin: 0px;
        padding: 6vw;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
    }

    .policy_title {
        font-size: 5vw;
    }

    .small_title {
        font-size: 4vw;
    }

    .privacy_p {
        font-size: 3vw;
        text-align: center;
        width: 80%;
    }

    .fuzz_div {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        height: fit-content;
        width: 100%;
        background-color: transparent;
        position: relative;
    }

    .list_points {
        width: 90%;
        font-size: 3vw;
        padding-left: 2vw;
    }

    .hr_policy {
        width: 60%;
        background-color: #ed3e07;
        height: 4px;
        border-radius: 50px;
        border-color: transparent;
    }

    .hr_small {
        width: 40%;
        background-color: #ffb119;
        height: 4px;
        border-radius: 50px;
        border-color: transparent;
    }
}