
body {     
    font-family: Arial, sans-serif;     
    background: url('https://www.axisbank.com/images/default-source/revamp_new/progresswithus/creative-05-10-23.jpg') no-repeat center center fixed;     
    background-size: cover;     
    margin: 0; }

.container {
    display: flex;
    width: 100%;
}


.sidebar {
    width: 250px;
    background: #A71930;
    color: white;
    padding: 20px;
    height: 100vh;
}

.sidebar h2 {
    text-align: center;
}

.sidebar nav ul {
    list-style: none;
    padding: 0;
}

.sidebar nav ul li {
    margin: 20px 0;
}

.sidebar nav ul li button {
    width: 100%;
    padding: 10px;
    border: none;
    background: white;
    color:#A71930 ;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
}

.sidebar nav ul li button:hover {
    background:white;
}

.content {
    flex: 1;
    padding: 20px;
    background: #f7bcc6 (255, 237, 227);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.form-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    width: 350px;
    text-align: center;
}

.form-container input, select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.form-container button {
    width: 100%;
    padding: 12px;
    background: #A71930;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.form-container button:hover {
    background: green;
}

.total-balance {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: green;
}
