
.body {
    font-family: "Open Sans", sans-serif;
}

#bg-color {
    background: rgb(243, 245, 248) !important;
}


.w-screen {
    position: relative;
}


.welcome-screen {
    background-color: rgb(237, 239, 242);
    height: 100vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: fixed;
    width: inherit;
}

.logo {
    margin: auto;
}

.welcome-screen h2 {
    font-size: 24px;
    font-weight: 400;
}

.welcome-screen img {
    width: 250px;
}

.desk {
    padding-left: 0px;
}


.connecting-box {
    display: inline-flex;
    padding: 10px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(237, 239, 242);
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 16px 32px -16px;
    flex-direction: row;
    border-radius: 61px;
}

.connect-image {
    background-color: #eee;
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding:0px;
    overflow: hidden;
    margin-right: 10px;
}

.connect-image img {
    width: 100%;
}

.connecting-box span {
    font-size: 18px;
    font-weight: 500;
    margin-right: 20px;
    padding: 0px 15px;
}

.connect-screen {
    text-align: center;
    margin-bottom: 20px;
}

.searching {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    cursor: default;
    overflow: hidden;
    transition: background 0.5s, border 0.5s, box-shadow 0.5s;
    background: rgb(255, 255, 255);
    outline: rgba(23, 52, 105, 0.05) solid 1px;
    border: 0px solid rgb(237, 239, 242);
    transition: background 0.2s;
    padding: 16px 20px;
    flex: 1 1 0%;
    margin-bottom: 20px;
}

.search {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.search-info {
    padding-left: 10px;
    font-weight: 600;
}

.m-form {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    cursor: default;
    overflow: hidden;
    transition: background 0.5s, border 0.5s, box-shadow 0.5s;
    background: rgb(255, 255, 255);
    outline: rgba(23, 52, 105, 0.05) solid 1px;
    border: 0px solid rgb(237, 239, 242);
    transition: background 0.2s;
    padding: 16px 20px;
    flex: 1 1 0%;
}

#myform {
    display: none;
    overflow: hidden;
}


.btn.activeForm{
    background-color: #fff!important;
    border: 1px solid #c5c5c5;
    color: rgb(64, 64, 64);
    font-size:13px;
    padding: 8px 25px;
}

.btn.activeForm:hover {
    color: rgb(64, 64, 64);
}

.btn.formactive{
    background-color: rgb(19, 99, 52) !important;
    border: rgb(19, 99, 52) !important;
    color: #fff !important;
    font-weight: bold;
}

.key_input::placeholder {
    color: #666666c4;
    opacity: 1; /* Firefox */
  }
  

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background-color: rgb(19, 99, 52)!important;
    color: #fff !important;
    border-radius: 10px !important;
    border: none !important;
    font-weight: 700 !important;
}

.nav-tabs {
    border-bottom: 0px !important;
}

.nav-tabs button {
    padding: 8px 20px !important;
    font-size: 14px;
    border: 1px solid #ddd !important;
    border-radius: 10px !important;
    color: #555 !important;
    margin-right: 10px !important;
}

.k-inputs {
    display: grid;
    grid-template-columns: repeat(3,auto);
    gap: 15px;
    margin-top: 20px;
}

.k-inputs input {
    margin-bottom: 5px;
    padding: 8px 10px;
}


.form-info h4 {
    font-size: 18px;
    color: rgb(19, 99, 52);
}

.form-button {
    background-color: rgb(19, 99, 52) !important;
    color: #fff !important;
    width: 200px;
    padding: 10px 25px;
    margin-top: 20px;
    border-radius: 10px;
}

button:disabled,
button[disabled]{
  border: 1px solid #999999;
  background-color: rgb(19, 99, 52) !important;
  color: #666666;
  opacity: 0.8 !important;
}

.errinfo {
    font-weight: 600;
    margin: 0;
    padding: 0;
}


@media only screen and (max-width:700px) {
    .w-screen {
        display: none;
    }

    .form-info h4 {
        font-size: 16px;
    }

    .form-info p {
        font-size: 14px;
    }

    .btn.activeForm {
        margin-bottom: 10px;
        width: 32%;
        font-size: 12px;
    }
}