body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  /*  background-color: #00aaff; /* Blue background */
    background-image: url(img/back.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    width: 90%;
    max-width: 1000px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.left-section {
    flex: 1;
    background-color: #000000; /* Blue background to match the overall theme */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
   /* box-shadow: 10px 0px 10px rgba(0, 0, 0, 0.747);*/
    
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.3);
     /* Shadow moved to the right
    
    /* Add a stronger shadow */
  /*  border-radius: 20px; /* Rounded corners */
  /*  transform: perspective(1000px) rotateX(30deg); /* Apply a 3D rotation */
}

.character-img {
    width: 100%;
    max-width: 250px;
    border-radius: 10px;
}

.right-section {
    flex: 2;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header {
    margin-bottom: 20px;
}

.lipa-na-mpesa {
    background-color: #3db83a;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: bold;
}

.header h1 {
    font-size: 1.5em;
    margin: 0;
    color: #333;
}

.details {
    margin-top: 10px;
    color: #555;
}

.details div {
    margin: 5px 0;
}

.details span {
    font-weight: bold;
}

.content {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.instructions, .amount {
    width: 45%;
}

.instructions h2, .amount h2 {
    margin-top: 0;
}

.instructions ol {
    padding-left: 20px;
    color: #555;
}

.amount {
    text-align: center;
}

.amount h2 {
    color: #333;
}

.amount p {
    font-size: 2em;
    color: #e65100;
    margin: 0;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.footer input {
    padding: 10px;
    width: 45%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.footer button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.footer button:hover {
    background-color: #45a049;
}

