
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0 8px;
}

.container {
    border: 1px solid rgb(153, 153, 153);
    max-width: 600px;
    margin: 16px auto;
    box-shadow: 2px 2px 32px 1px rgb(180, 180, 180);
    padding: 24px 12px;
    min-height: calc(100vh - 82px);
    position: relative;
}

.container .header {
    margin: 24px 16px;
    text-align: center;
}

.container .header span {
    display: block;
    font-size: 22px;
    font-weight: 600;
}

.container .header .logo {
    text-align: center;
}

.container .header .logo img {
    width: 76px;
}

.provider .item {
    border: 1px solid gray;
    border-radius: 4px;
    cursor: pointer;
    padding: 12px;
    font-weight: 600;
    font-size: 20px;
    display: flex;
    align-items: center;
    margin-top: 12px;
    width: 100%;
    background-color: aliceblue;
}

.provider .item img {
    width: 28px;
}

.provider .item span {
    margin-left: 12px;
}

.field {
    padding: 4px;
}

.field label {
    font-size: 0.85rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
}

.field input,
.field select {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    width: 100%;
    min-width: 0;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 18.75px;
    background-image: none;
    background-color: white;
    border: 1px solid #797979;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #525252;
    box-shadow: none;
    border-radius: 0.5rem;
    padding: 0 1.25rem;
    height: 2.5rem;
}
.field input:focus-visible,
.field select:focus-visible {
    border-color:#525252;
    outline: 0;
}

/* 
.field select {
    width: 100%;
    font-size: 18px;
    line-height: 24px;
    padding: 8px;
    border-radius: 4px;
} */

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

#imap-container .configuration {
    border: 0px;
    background-color: transparent;
    color: darkblue;
    text-decoration: underline;
}

.imap-submit {
    width: 100%;
    font-size: 18px;
    padding: 8px;
    border-radius: 4px;
    background-color: blue;
    color: aliceblue;
}

.back {
    position: absolute;
    top: 0;
    left: 0;
    border: 0px;
    background-color: transparent;
    padding: 4px;
    font-size: medium;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.text-red {
    color: red;
}

.imap-input-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* .imap-input-container input[type="password"] {
    width: calc(100% - 25px);
    padding-right: 25px;
} */

.info-button {
    position: absolute;
    right: 0.43rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    width: 15px;
    height: 15px;
    text-align: center;
    line-height: 15px;
}

.info-button:hover::after {
    content: "Please enter App password of your email address";
    position: absolute;
    background-color: #d7d7d7;
    color: var(--text-white);
    padding: 5px;
    border-radius: 3px;
    font-size: 12px;
    top: -32px;
    right: 0;
    white-space: nowrap;
    z-index: 1000;
}


.imap-info {
    margin-top: 8px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}
.main-loader {
      
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 18px;
      color: #333;
      font-weight: 500;
      padding: 10px 20px;
      border-radius: 8px;
    
}