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

body {
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    min-height: 100vh;
    background-color: #210c34;
    font-family: Arial, sans-serif;
    padding: 0px;
}
.title {
    display: flex;
    justify-content: center;
}

.container {
    background-color: #ffffff;
    width: 80%; 
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    min-height: 100vh; 
}

.update-bitcoin-conversion {
    background-color: #e8e8e8;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row; /* This will arrange items horizontally */
    justify-content: center; /* This will center items horizontally */
    align-items: center; /* This will center items vertically */
    gap: 20px; /* This will add a 20px gap between items */
    width: 600px;
    margin: 0 auto; /* This will center the div horizontally */
}

.kyc-form-container {
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
}

.input-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kyc-form {
    display: flex;
    flex-direction: column;
}

.kyc-form div {
    margin-bottom: 20px;
}

.kyc-form label {
    display: block;
    margin-bottom: 10px;
}

.kyc-form input[type="text"] {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.kyc-form input[type="radio"] {
    margin-right: 10px;
}

.kyc-form button {
    padding: 10px;
    border-radius: 5px;
    border-color: #53b7ea;
    background-color: white;
    color: #53b7ea;
    cursor: pointer;
    font-size: 20px;
}

.submit-button-container {
    display: flex;
    justify-content: center;
}

.kyc-form button:hover {
    background-color: #53b7ea;
    color: white;
    border-color: white;
}

.sending-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sending-options input[type="radio"] {
    display: none;
}

.sending-options input[type="radio"] + label {
    padding: 10px 20px;
    background-color: #e8e8e8;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sending-options input[type="radio"]:checked + label {
    background-color: #53b7ea;
}
