
html,
body {
    /* width: 100vw!important;
    height: 100vh !important;
    max-width: 100vw!important;
    max-height: 100vh !important; */
    font-size: 13px !important;
    font-family: Arial, sans-serif !important;
}
 
*{
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
}
 
.loader-container,
.error-container {
    font-size: 1.5rem;
    position: fixed;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
 
.loader-container {
    background-color: #9999;
}
 
.loader:after {
    content: ' .';
    animation: dots 1s steps(5, end) infinite;
}
  @keyframes dots {
    0%, 20% {
      color: rgba(0,0,0,0);
      text-shadow:
        .25em 0 0 rgba(0,0,0,0),
        .5em 0 0 rgba(0,0,0,0);}
    40% {
      color: black;
      text-shadow:
        .25em 0 0 rgba(0,0,0,0),
        .5em 0 0 rgba(0,0,0,0);}
    60% {
      text-shadow:
        .25em 0 0 rgba(0,0,0,0),
        .5em 0 0 rgba(0,0,0,0);}
    80%, 100% {
      text-shadow:
        .25em 0 0 black,
        .5em 0 0 black;
    }
}
 
.error-container {
    flex-direction: column;
    gap: 4%;
    background-color: #fff;
    white-space: break-spaces;
}
 
.main-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 10px;
}
 
.left,
.right {
    width: 100%;
    height: 100%;
}
 
.left{
    padding: 10px;
    border: 1px solid lightslategray;
    display: grid;
    grid-template-rows: auto min-content;
    width: 40%;
}
 
.input-container {
    display: grid;
    grid-template-rows: min-content auto;
}
 
.input-container > :last-child {
    display: grid;
    grid-template-rows: min-content auto;
}
 
.input-container textarea {
    height: 100%;
    padding: 5px;
}
 
.input-field-div{
    margin: 8px 0;
}
 
.input-field-div input {
    width: 100% !important;
    height: 30px !important;
    padding: 5px;
}
 
.input-container .input-field-div div {
    margin-bottom: 3px;
}
 
.right {
    width: 60%;
    display: grid;
    grid-template-rows: auto auto;
    gap: 10px;
}
 
/* .top-container,
.bottom-container {
    width: 100%;
    height: 100%;
    border: 1px solid lightslategray;
} */
 
.micro-app-container {
    height: 100%;
    width: 100%;
}
 
.micro-app-container > div {
    height: 100%;
    width: 100%;
}
 
/* .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: inherit;
    width: 100%;
    height: 100%;
} */

.load-microapp{
    position: fixed;
    top: 50%;
    left: 50%;
}
 
.button-container button {
    margin: 0 10px;
    padding: 10px 20px;
    height: 60px;
}
 
.bottom-container {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}
 
.submit-btn{
    width: 8rem;
    height: 2.5rem;
    margin: 1rem;
    margin-left: 40.5%;
}
#submit:disabled{
    cursor: not-allowed;
    opacity: 0.6;
}
.left-top-conatiner{
    padding: 10px;
    display: grid;
    grid-template-rows: auto min-content;
}