:root {
    --primary: #5465FF;
    --bg-light: #F8F7FF;
    --text-dark: #2D3142;
    --grey: #9EA3B0;
    --white: #FFFFFF;
    --shadow: 0 4px 15px rgba(0,0,0,0.05);
}

* { box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

/* Reusable Ayur-Card */
.ayur-card {
    background: var(--white);
    border-radius: 5px;
    padding: 25px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(0,0,0,0.02);
}

.input-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--text-dark);
}

/* Reusable Inputs */
.ayur-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.ayur-input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Reusable Primary Button */
.btn-primary {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    font-size: 14px;
    transition: opacity 0.3s;
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.error-text {
    color: #FF5252;
    font-size: 12px;
    text-align: center;
    margin-bottom: 10px;
    display: none;
}