* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background:
        linear-gradient(
            rgba(106, 17, 203, 0.75),
            rgba(37, 117, 252, 0.75)
        ),
        url("https://upload.wikimedia.org/wikipedia/commons/thumb/8/80/World_map_-_low_resolution.svg/1920px-World_map_-_low_resolution.svg.png");
    background-size: cover;
    background-position: left bottom center ;
    background-repeat: no-repeat;
}

.container {
    width: 380px;
    padding: 2rem;
    border-radius: 18px;
    background: rgba(199, 209, 57, 0.2);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    color: white;
}

.container h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.amount p,
.from p,
.to p {
    margin-bottom: 8px;
    font-weight: 600;
}

.amount input {
    width: 100%;
    padding: 12px;
    border: none;
    outline: none;
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.dropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
}

.select-container {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 8px 12px;
    border-radius: 10px;
}

.select-container img {
    width: 35px;
}

select {
    border: none;
    outline: none;
    background: transparent;
    color: black;
    font-size: 1rem;
}

.dropdown i {
    margin-top: 20px;
    font-size: 20px;
    color: white;
}

.msg {
    margin-top: 1rem;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: white;
    color: #6a11cb;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: 0.3s ease;
}

button:hover {
    transform: scale(1.03);
    background: #f5f5f5;
}