#loginContainer {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loginView {
    display: flex;
    width: 458px;
    height: 528px;
    background: inherit;
    background-color: rgba(255, 255, 255, 1);
    border: none;
    border-radius: 41px;
    box-shadow: 0px 0px 10px rgba(187, 187, 187, 0.34901960784313724);
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
}

.viewTitle {
    font-size: 28px;
    font-weight: bold;
}

.inPanel {
    display: flex;
    flex-direction: column;
    width: 350px;
    /*height: 250px;*/
}

.inPanelQrCode {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inPanel .inPanelItem {
    display: flex;
    flex-direction: row;
    border: 1px solid #eeeeee;
    border-radius: 50px;
    /* padding: 10px; */
    margin: 10px;
    box-shadow: 0px 0px 10px rgba(187, 187, 187, 0.34901960784313724);
    height: 45px;
    align-items: center;
    padding: 0 10px;
}

.inPanel .inPanelItem input {
    border: none;
    height: 36px;
    width: 150px;
}

.inPanel .inPanelItem input:focus {
    outline: none;
}

.inPanel .inLabel {
    border-right: 1px solid #eeeeee;
    padding: 0 10px;
}

.qrCodeIn {
    width: 180px;
    height: 180px;
    border: 1px solid #eeeeee;
}

#butObGetCode {
    color: #35AAFD;
    cursor: pointer;
    background: none;
    border: none;
}