/* Component Styles */

/* Button styles */
.button {
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.button1 {
    background-color: #3c3e3d;
}

.button2 {
    background-color: #008CBA;
}

.login-button {
    /* Specific login button styles if any */
}

/* Checkbox components */
.checkbox-container {
    display: flex;
    align-items: center;
    margin: 1rem 0;
    gap: 0.5rem;
}

.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-container label {
    cursor: pointer;
    color: #fff;
    font-size: 0.9rem;
}

/* Continue button */
.continue-button {
    background: linear-gradient(135deg, #ff6b00, #ff8f00);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.continue-button:hover {
    background: linear-gradient(135deg, #ff8f00, #ffab00);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

/* Button containers */
.button-container {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.confirm-button, .cancel-button {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

.confirm-button {
    background-color: #ff6b00;
    color: white;
}

.confirm-button:hover {
    background-color: #ff8f00;
}

.cancel-button {
    background-color: #666;
    color: white;
}

.cancel-button:hover {
    background-color: #777;
} 