/* Authifex 安装向导专用样式 */

/*布局与基础样式*/

body {
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.install-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

/*动画效果*/
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

/* 在 CSS 文件中只需要一个 @ 符号 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/*验证控件样式*/

/* 隐藏空的验证摘要框 */
/* 当 ASP.NET Core 验证通过时，会自动添加 .validation-summary-valid 类 */
.validation-summary-valid {
    display: none;
}

/* 稍微美化一下报错时的样式 */
.validation-summary-errors {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.1);
    margin-bottom: 20px;
    padding: 15px;
}

.validation-summary-errors ul {
    margin-bottom: 0;
    padding-left: 20px;
}
