/* templates/minimal.css */
/* Minimal Template - Zen Simplicity */
body.template-minimal {
    background: #f7f9fc;
}
.template-minimal #main {
    margin: 60px auto;
    max-width: 800px;
    padding: 0 15px;
}
.template-minimal .field {
    background: #fff;
    padding: 20px;
    margin: 15px 0;
    border: none;
    border-bottom: 3px solid #00c250;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}
.template-minimal .field::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #00c250;
    transition: width 0.4s ease;
}
.template-minimal .field:hover::after {
    width: 100%;
}
.template-minimal .brand {
    font-size: 32px;
    color: #333;
    font-family: 'Georgia', serif;
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px dashed #ccc;
}
.template-minimal .enter-maomi {
    border: none;
    border-bottom: 1px solid #00c250;
    background: none;
}