.bankcalc-wrapper {
    font-family: 'Raleway', sans-serif;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: auto;
    color: #00000070;
}

.bankcalc-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bankcalc-field label {
	font-weight: 600;
}

.bankcalc-field input {
	border-radius: 20px !important;
    border: 1px solid #00000013 !important;
	background: #D9D9D914 !important;
	padding: 10px 20px !important;
	height: 60px !important;
}
.bankcalc-field select {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #00000013;
    background: #D9D9D914;
    height: 60px;
    padding: 10px 20px;
}

.bankcalc-results {
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.bankcalc-row {
    display: flex;
    justify-content: space-between;
}

.bankcalc-btn {
    background: #1D3854;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
}