/* style.css 文件内容 */
/* 基本样式 */
#vanta-bg {
    position: absolute; /* 父元素相对定位 */
    font-family: Arial, sans-serif; /* 使用无衬线字体 */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    overflow: hidden;
    padding-right: calc(100vw - 100%); /* 增加内边距以抵消滚动条宽度 */
}

.login-container {
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex; /* 使用flex布局 */
    flex-direction: column; /* 子项垂直排列 */
}

.input-field,
button {
    margin: 5px; /* 为所有输入框和按钮添加外边距 */
}

.input-field {
    flex: 1; /* 输入框占据剩余空间 */
    padding: 10px; /* 内边距 */
    border: 1px solid #000; /* 边框颜色 */
    box-sizing: border-box; /* 防止宽度超出父容器 */
}

/* 动画效果 */
.input-field:hover {
    transform: scale(1.05); /* 鼠标悬停时放大文本框 */
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5); /* 添加发光效果 */
    border-color: #000; /* 边框颜色变深 */
    transition: all 0.3s ease-in-out; /* 平滑的过渡效果 */
}

/* 按钮样式 */
button {
    padding: 10px 15px; /* 内边距 */
    background-color: #000; /* 背景色 */
    color: #fff; /* 文字颜色 */
    border: none; /* 无边框 */
    cursor: pointer; /* 鼠标指针变成手形 */
    transition: background-color 0.3s ease-in-out; /* 背景色过渡效果 */
}

button:hover {
    background-color: #333; /* 鼠标悬停时背景色变深 */
}

.message {
    color: #333; /* 消息文字颜色 */
    text-align: center; /* 消息文本居中对齐 */
    margin-bottom: 15px; /* 在消息和输入框之间添加一些空间 */
}

p {
    margin-bottom: 10px; /* 给消息和输入框之间添加一些空间 */
    text-align: center; /* 若需要，可以使文本居中 */
    color: black; /* 可以设置文本颜色，例如用于错误消息 */
}

.options-container {
    display: flex;
    justify-content: start;
    align-items: center;
}

.option-item {
    margin-right: 15px; /* 或者根据需要调整间距 */
}

.tutorial-btn {
    padding: 10px 25px;
    margin: 10px 0;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.15); /* 半透明 */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(8px); /* 毛玻璃模糊 */
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tutorial-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.tutorial-btn:active {
    transform: translateY(1px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.glass-btn {
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.glass-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.glass-btn:active {
    transform: translateY(1px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

form.login-container {
    padding-top: 20px;
    transform: scale(0.9) translateY(-50px);
    transform-origin: top center;
}
