body {
    background-color: #101010;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
    background-color: #2B2A2C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    width: 460px;
}

/* Captcha Page */
img.icon {
    width: 24px;
    height: auto;
    margin-right: 3px;
}

input[type="submit"] {
    background-color: #007BFF;
    border: none;
    padding: 10px 20px;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

input[type="text"] {
    padding: 10px;
    border-radius: 5px;
    border: none;
    width: 50px;
    text-align: center;
}

.error {
    color: red;
}

/* Gateway Page */
.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

h2 {
    font-size: 20px;
    margin: 20px 0 10px;
}

.quick-transfer-btn {
    display: flex;
    width: 100%;
    font-size: 20px;
    background-color: #28a745;
    padding: 15px;
    border: none;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s;
    cursor: pointer;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
}

.quick-transfer-btn:hover {
    background-color: #218838;
}

.separator {
    height: 2px;
    background-color: #686868;
    margin: 20px 0;
}

.note {
    margin: 15px 0;
    font-size: 16px;
    color: #ccc;
}

.clipboard-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2B2A2C;
    padding: 20px;
    border-radius: 8px;
}

.email-box {
    border: 1px solid #686868;
    padding: 6px 10px;
    border-radius: 5px;
    margin-right: 10px;
    background-color: #3e3e3e;
}

.email {
    font-size: 21px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #007BFF;
    border: none;
    padding: 8px 12px;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    min-width: 116px;
}

button:hover {
    background-color: #0056b3;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.copied {
    background-color: #28a745 !important;
}

.icon {
    width: 20px;
    height: auto;
    margin-right: 3px;
}

#serviceOrderBtn {
    margin-top: 20px;
    opacity: 0.5;
    cursor: not-allowed;
    width: 100%;
}

#serviceOrderBtn:enabled {
    opacity: 1;
    cursor: pointer;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    padding-top: 100px;
}

.modal-content {
    background-color: #2B2A2C;
    margin: 70px auto;
    padding: 20px;
    border: 1px solid #686868;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.modal-header {
    margin-bottom: 20px;
    font-size: 20px;
    color: #fff;
    text-align: center;
}

.modal-body {
    margin-bottom: 20px;
    color: #ccc;
    text-align: center;
}

.modal-buttons {
    display: flex;
    justify-content: space-around;
}

.modal-buttons button {
    width: 45%;
    padding: 10px;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}

.modal-buttons button:hover {
    background-color: #0056b3;
}
