/* assets/css/templates/minimal.css */
.byteplugs-modal.minimal .byteplugs-modal-content {
    max-width: 360px;
    width: 90%;
    padding: 25px;
}

.minimal .modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.minimal .modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.minimal .auth-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.minimal .auth-tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 10px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    position: relative;
}

.minimal .auth-tab-btn.active {
    color: #333;
}

.minimal .auth-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
}

.minimal .form-row {
    margin-bottom: 15px;
}

.minimal input[type="text"],
.minimal input[type="email"],
.minimal input[type="password"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.minimal input[type="text"]:focus,
.minimal input[type="email"]:focus,
.minimal input[type="password"]:focus {
    border-color: #333;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
}

.minimal .options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin: 15px 0;
}

.minimal .checkbox-container {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: #666;
}

.minimal .checkbox-container input[type="checkbox"] {
    width: 14px;
    height: 14px;
    margin: 0;
}

.minimal .forgot-password {
    color: #666;
    text-decoration: none;
    font-size: 13px;
}

.minimal .forgot-password:hover {
    text-decoration: underline;
}

.minimal .byteplugs-btn {
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.minimal .byteplugs-btn:hover {
    background-color: #000;
}

.minimal .terms {
    font-size: 13px;
    color: #666;
    margin: 15px 0;
}

.minimal .terms a {
    color: #333;
    text-decoration: none;
}

.minimal .terms a:hover {
    text-decoration: underline;
}

.minimal .auth-tab-content {
    animation: fadeIn 0.2s ease-out;
}