body {
    font-size: 12px !important;
}

h2 {
    border-bottom: 1px #ddd solid;
    padding-bottom: 5px;
    font-size: 16px !important;
}

.form-group {
    margin-bottom: 6px;
}

.btn-block {
    display: block;
    width: 100%;
}

.input-group-text {
    width: 15%;
    place-content: center;
}

.authentication {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100vh;
    flex-direction: column;
    gap: 20px;
}

.authentication-inner {
    align-items: stretch;
    animation: 1s authentication;
    display: flex;
}

.authentication-form {
    background: #1e3050;
    color: #fff;
    padding: 30px;
    border-radius: 10px 0 0 10px;
}

.authentication-title {
    display: flex;
    justify-content: space-between;
}

.authentication-logo {
    align-items: center;
    background: #f6f6f6;
    border-bottom: 1px #ddd solid;
    border-right: 1px#ddd solid;
    border-top: 1px #ddd solid;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 0 10px 10px 0;
}

.authentication-logo img {
    max-width: 250px;
    width: 100%;
}

.btn-primary {
    color: #fff !important;
    background-color: #7699e1 !important;
    border-color: #6189dc !important;
}

@keyframes authentication {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    height: 38px;
}
.loading-dots {
    display: inline-block;
    text-align: center;
    height: 1em;
    width: 3em;
    position: relative;
}

.loading-dots span {
    display: inline-block;
    width: .5em;
    height: .5em;
    background: white; /* Change color to white */
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    animation: bounce 1.2s infinite;
}

.loading-dots span:nth-child(1) {
    left: 0;
    animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
    left: 1em;
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    left: 2em;
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-0.5em); /* Reduce the jump height */
    }
}

.alerts {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert {
    width: 100%;
    height: auto;
    line-height: 1;
    display: flex;
    justify-content: space-between;
}

.close-alert {
    background: none;
    border: none;
}

.activeInstances {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.instance {
    width: 225px;
    height: 125px;
    background: #f6f6f6;
    border: 2px solid #ddd;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    box-sizing: content-box;
}

.instance:hover {
    cursor: pointer;
    border: 2px solid #7699e1;
}

span.instanceName {
    font-size: 20px;
    text-align: center;
    padding: 5px;
    border-bottom: 1px solid #ddd;
}

.instance-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

span.instanceLogin {
    text-align: center;
}

span.instanceDate {
    font-size: 12px;
    text-align: center;
}

.link {
    color: #7699e1 !important;
    text-decoration: none;
}
.link:hover {
    text-decoration: none;
    cursor: pointer;
    color: #4465aa !important;
}

.environmentText {
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.2em;
    margin: 1.5em;
    background: #1e3050;
    border-radius: 10px;
    border: 2px solid #7699e1;
    color: white;
}

.disabledLink {
    color: #b7c1d5;
    text-decoration: none;
    cursor: not-allowed;
}

.input-group-text:last-child:hover {
    cursor: pointer;
    background-color: #ddd;
}