* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.payment-container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

.logo img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.label {
    font-size: 1.2rem;
    font-weight: bold;
    width: 50%;
    text-align: left;
}

.input-wrapper {
    width: 50%;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.currency-symbol {
    padding: 10px;
    background-color: #f0f0f0;
    border-right: 1px solid #ddd;
}

.input {
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
}

.currency-input {
    border-radius: 0 5px 5px 0;
}

.email-input::placeholder {
    color: black;
    opacity: 1; /* Make sure placeholder is visible */
}

.email-input {
    border: 1px solid black;
    border-radius: 5px;
    width: 50%;
    padding: 10px;
    outline: none;
}

.submit-button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
}

.submit-button:hover {
    background-color: #0056b3;
}
