#sign-in-container {
    margin-top: 150px;
    display: flex;
    justify-content: center;
    position: relative;
    font-family: Arial, sans-serif;
    padding: 0;
    align-items: center;
    height: 50vh;
}

.line {
    text-align: center;
    margin-bottom: 10px;
}

.solid-line {
    display: inline-block;
    width: 50px; /* Adjust width as needed */
    border-top: 1px solid #999999;
    margin: 0 10px;
}

.alternative-login-separation span {
    background: #fff;
    padding: 0 10px;
}

.login-container {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 350px;
    margin: auto;
    background: rgba(255, 255, 255, 0.45); /* Adjust the transparency as needed */
    backdrop-filter: blur(10px);
}

.login-container h2 {
    margin-bottom: 20px;
    text-align: center;
}

.login-container h2 img {
    width: 50px;
    height: 50px;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: calc(100%);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
    border-color: #007bff;
}

.login-form .input-container {
    position: relative;
}

.login-form label {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #999;
    font-size: 12px;
    pointer-events: none;
    transition: top 0.3s, font-size 0.3s;
}

.login-form input[type="text"]:focus + label,
.login-form input[type="password"]:focus + label,
.login-form input[type="text"]:valid + label,
.login-form input[type="password"]:valid + label,
.login-form input:-webkit-autofill + label {
    margin-top: 2px;
    top: -16px;
    font-size: 10px;
}

/* Autofill specific styles */
.login-form input:-webkit-autofill,
.login-form input:-webkit-autofill:hover,
.login-form input:-webkit-autofill:focus,
.login-form input:-webkit-autofill:active {
    font-family: Arial, sans-serif !important;
    -webkit-text-fill-color: #000 !important;
    font-weight: 500;
    transition: background-color 5000s ease-in-out 0s;
}

.login-form .button-container {
    display: flex;
    flex-direction: column; /* Adjusts buttons to be stacked vertically */
    align-items: center; /* Aligns buttons to the center horizontally */
}

.login-form input[type="submit"] {
    width: 100%; /* Make buttons take full width of container */
    margin-bottom: 10px; /* Add space between buttons */
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: rgba(102, 43, 222, 0.85);
    color: #ffffff;
    cursor: pointer;
}

.login-form input[type="submit"]:hover {
    background-color: #ad4ffd;
}

.login-form #login-with-okta {
    background-color: #238bff; /* Green */
    width: 100%; /* Make buttons take full width of container */
    margin-bottom: 10px; /* Add space between buttons */
    padding: 10px;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    cursor: pointer;
}

.login-form #login-with-okta:hover {
    background-color: #a1a1a1;
}

.login-with-okta img {
    width: 50px;
    height: auto;
    position: relative;
    left: 2px;
    top: 50%;
    margin-right: 10px;
}

.spinner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #3498db;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}