* {
    margin: 0; padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); /* Deep Purple Gradient */
}

.wrapper {
    width: 370px;
    padding: 30px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

header {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    color: #4a4a4a;
    margin-bottom: 25px;
}

form p { font-size: 14px; margin-bottom: 5px; color: #777; }

input, select, button {
    width: 100%;
    outline: none;
    border-radius: 8px;
    border: 1px solid #ddd;
}

input {
    height: 50px;
    padding: 0 15px;
    font-size: 17px;
}

.drop-list {
    display: flex;
    margin-top: 20px;
    align-items: center;
    justify-content: space-between;
}

.select-box {
    display: flex;
    width: 115px;
    height: 45px;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 0 5px;
    border-radius: 8px;
}

.select-box img { width: 25px; margin-right: 5px; }

.icon {
    font-size: 18px;
    margin-top: 25px;
    color: #764ba2;
    cursor: pointer;
}

.exchange-rate {
    font-size: 17px;
    margin: 25px 0 15px;
    text-align: center;
    font-weight: 500;
    color: #333;
}

button {
    height: 52px;
    color: #fff;
    background: #764ba2;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    border: none;
}

button:hover { background: #5a368a; }
/* Ads Layout Styling */
.ad-container {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    width: 100%;
    max-width: 728px;
    height: 90px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: sans-serif;
    position: relative;
}

.ad-label {
    position: absolute;
    top: 2px;
    left: 5px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
}

.ad-container p {
    font-size: 14px;
    font-weight: bold;
    opacity: 0.7;
}

/* Page alignment taake ads center mein rahein */
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}