/* Adonai Loan Calculator Styles */

@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;600;700&display=swap');

.alc-calculator-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 450px;
    margin: 0 auto;
    font-family: 'Figtree', sans-serif;
    color: rgb(102, 112, 133);
}

.alc-title {
    color: rgb(37, 62, 85);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.alc-form-group {
    margin-bottom: 20px;
}

.alc-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: rgb(37, 62, 85);
}

.alc-form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Figtree', sans-serif;
    transition: border-color 0.3s ease;
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}

.alc-form-group input:focus {
    border-color: rgb(37, 62, 85);
    outline: none;
}

.alc-btn {
    width: 100%;
    background-color: rgb(37, 62, 85);
    color: #ffffff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    font-family: 'Figtree', sans-serif;
}

.alc-btn:hover {
    background-color: rgb(27, 47, 65);
}

.alc-btn:active {
    transform: scale(0.98);
}

.alc-result {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.alc-result h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: rgb(102, 112, 133);
}

.alc-amount-display {
    font-size: 32px;
    font-weight: 700;
    color: rgb(37, 62, 85);
    margin: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
