/* Reset some default styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: linear-gradient(to right, #8749E80f, #D1A3F70f, #ffa7860f, #00BFFF0f, #32CD320f);
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.container {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
    padding: 0px;
    position: relative;
}

.box {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 30px;
    margin: 10px;
    box-shadow: 0 8px 3px #8749E8;
    max-width: 400px;
    background-color: #ffffff;
}

.right {
    background-color: #8749E830;
    border: px solid #FFCC00;
}

.logo {
    max-width: 80px;
    margin-bottom: 20px;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    text-align: center;
    color: #000;
}

.account-details {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
    position: relative;
}

.bold {
    font-weight: bold;
}

.note {
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
    color: #000;
}

.note .bubble {
    display: inline-block;
    padding: 5px 10px;
    background-color: #8749E8;
    color: #ffffff;
    border-radius: 20px;
    margin: 10px 0;
    font-weight: bold;
    font-size: 14px;
}

.copy-button {
    display: inline-flex;
    align-items: center;
    background-color: #8649e800;
    color: #8749E8;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 12px;
}

.copy-button:hover {
    background-color: #FFFFF1;
}

.copy-icon {
    margin-right: 1px;
}


h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

/* Features List */
.features {
    list-style-type: disc;
    padding-left: 15px;
    margin-top: 15px;
    font-size: 14px;
    text-align: left;
    color: #555;
}

/* Get Access Section */
.get-access {
    background-color: #ffffff20;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ccc;
max-width: 750px;
    text-align: center;
    margin-top: 30px;
}

.get-access h3 {
    margin-bottom: 10px;
    font-size: 18px;
    text-align: left;
    padding-left: 20px;
}

.get-access p {
    font-size: 18px;
    color: #676767;
    padding-left: 20px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.get-access button {
    background-color: #7aae0020;
    color: #7aae00;
    border: 0px solid #7aae00;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.get-access button:hover {
    background-color: #7aae00;
    color: #fff;
}
