

html, body {
    background-color: var(--light-theme-global-background-color);
}

.centerWidgetContainer {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 100%;
    min-width: 100%;
}

.centerWidget {
    margin: auto;
    min-width: 30%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.fullhr {
    width: 90%;
    height: 2px;
    background: var(--light-theme-indp-container-color);
    border: var(--light-theme-indp-container-color);
}

.cHeader1 {
    color: var(--light-theme-text1-color);
    font-size: 28px;
    font-weight: 600;
    font-family: Verdana, sans-serif;
}
.pHeader1 {
    color: var(--light-theme-text1-color);
    font-size: 14px;
    font-weight: 600;
    font-family: Verdana, sans-serif;
}


.submitButton {
    align-content: center;
    border-radius: 20px;
    border-color: #c295d8;
    background: var(--light-theme-indp-container-color);
    height: 50px;
    width: 80%;
    border: none;
    font-size: 14px;
    font-weight: 600;
    font-family: Verdana, sans-serif;
    transition: opacity 0.3s ease-in;
    opacity: 1.0;
    color: var(--light-theme-text1-color);
}
.submitButton:hover {
    cursor: pointer;
    transition: opacity 0.3s ease-in;
    opacity: 1.0;
}

.ioForm {
    width: 100%;
    display: flex;
    flex-direction: column;
}
  
.column {
    flex: 50%;
}
.colInfo {
    flex: 25%;
}
.colSettings {
    flex: 75%;
}

[contentEditable=true]:empty:not(:focus):before{
    content:attr(data-text)
}

.card {
    background: var(--light-theme-indp-container-color);
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    min-height: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
}
.card-header {
    color: var(--light-theme-header-color);
    text-align: left;
    border-bottom: 1px solid var(--light-theme-global-background-color);
    font-size: 16px;
    height: 40%;
    font-weight: bold;
    font-family: Verdana, sans-serif;
}
.card-main {
    color: var(--light-theme-header-color);
    font-family: Verdana, sans-serif;
    font-size: 14px;
    height: 60%;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
}
.formEntryRow {
    display: flex;
    justify-content: center;
    align-items: center;
}
.formCardEntry, #id_password, #id_username, #id_password1, #id_password2, #id_email, #id_first_name:focus, #id_last_name:focus, #id_phone:focus
 {
    background: transparent;
    font-family: Verdana, sans-serif;
    font-weight: bold;
    min-width: 100%;
    width: 100%;
    margin-left: 10px;
    border: transparent;
    color: var(--light-theme-text1-color);
    text-align: left;
}
#id_password:focus, #id_username:focus, #id_password1:focus, #id_password2:focus, #id_email:focus, #id_first_name:focus, #id_last_name:focus, #id_phone:focus
{
    transition: opacity 0.2s ease-in;
    opacity: 1.0;
    outline: none;
  }
