/* bide-frontend.css */

.bide-auth-container {
    max-width: 400px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.bide-auth-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.bide-auth-tab {
    flex: 1;
    background: #f7f7f7;
    border: none;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    transition: background 0.3s;
}

.bide-auth-tab:hover {
    background: #eaeaea;
}

.bide-auth-tab.active {
    background: #fff;
    font-weight: bold;
    border-bottom: 2px solid #0073aa;
}

.bide-auth-form-wrapper {
    padding: 20px;
}

.bide-form-group {
    margin-bottom: 15px;
}

.bide-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.bide-form-group input,
.bide-form-group select,
.bide-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.bide-form-group textarea {
    height: 80px;
    resize: vertical;
}

.bide-btn {
    width: 100%;
    padding: 12px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.bide-btn:hover {
    background: #005177;
}

.bide-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.bide-form-msg {
    margin-bottom: 15px;
    font-size: 14px;
}
