/* Federated Login Form Styles */
#wrap {
    height: 100%;
    margin: inherit;
}

body {
    height: auto;
}

#wrap > div.container {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
}

div.landing-page-container {
    padding: 0;
    position: relative;
    min-height: 90vh;
    height: 100%;
}
.federated-login-wrapper {
    position: absolute;
    display: block;
    width: 100%;
    max-width: 440px;
    box-sizing: border-box;
    transform: translate(50%, -50%);
    top: 50%;
    right: 50%;
    padding: 40px 20px;
}

.federated-login-container {
    max-width: 440px;
    width: 100%;
}

.federated-login-card {
    background: white;
    border-radius: 16px;
    padding: 48px 30px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

img.federated-logo {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
}

input.federated-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 4px;
    margin-bottom: 16px;
    margin-top: 0;
    box-sizing: border-box;
    transition: all 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    height: auto;
    line-height: normal;
    background: white;
}

input.federated-input:focus {
    outline: none;
}

input.btn-primary {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    margin-bottom: 24px;
    margin-top: 0;
    transition: background-color 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    height: auto;
    line-height: normal;
    text-align: center;
    text-decoration: none;
    display: block;
    box-shadow: none;
}

input.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.federated-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0;
    color: #666;
    font-size: 14px;
}

.federated-separator::before,
.federated-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #d1d1d1;
}

.federated-separator::before {
    margin-right: 16px;
}

.federated-separator::after {
    margin-left: 16px;
}

a.federated-btn-secondary {
    width: 100%;
    padding: 16px;
    border-radius: 24px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;
}

a.federated-btn-secondary:hover {
    text-decoration: none;
}

.federated-link {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    display: inline-block;
}

.federated-link:hover {
    text-decoration: underline;
}

.federated-footer {
    margin-top: 24px;
    font-size: 10px;
    color: #666;
    text-align: center;
}

.federated-alert {
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 14px;
    text-align: left;
}

img.poweredbylogo {
    height: 14px;
    vertical-align: middle;
}

.poweredby {
    font-weight: normal;
    color: #666;
    vertical-align: middle;
}
@media (max-width: 768px) {
    div.federated-login-card {
        padding: 32px 24px;
    }

    div.federated-logo {
        max-width: 220px;
    }

}
