/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #1e1e1e; /* Dark background */
    font-family: Arial, sans-serif;
}

.referral-banner {
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    width: 80%;
    /* max-width: 800px; */
    padding: 20px;
    background-color: #2c2c2c; /* Dark gray */
    border-radius: 12px;
    backdrop-filter: blur(100px);
    box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 1);
    color: rgba(255, 255, 255, 1);
    position: relative;
}

.logo {
    /* display: flex; */
    align-items: center;
    margin-right: 20px;
}
.logo img{
    height: 40px;
    width: 200px;
}
.content , .link-btn{
     display: flex;
     align-items: center;
     margin-right: 20px;
     justify-content: center;
}
.link-btn{
    margin-top: 8px;

}

.logo .icon {
    background-color: #fbc02d; /* Yellow background */
    color: #2c2c2c; /* Dark text */
    font-weight: bold;
    padding: 8px 10px;
    border-radius: 4px;
    margin-right: 8px;
    font-size: 14px;
}

.brand {
    font-size: 16px;
    font-weight: bold;
}

.message {
    font-size: 29px;
    font-weight: bold;
    margin-right: auto;
  
}

.copy-btn {
    background-color: rgba(254, 207, 15, 1);
    color: rgba(1, 33, 66, 1);
    border: none;
    padding: 10px 41px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    font-size: 18px;
    margin-right: 10px;
}

.copy-btn:hover {
    background-color: #e6b800;
}

.close-btn {
    font-size: 50px;
    /* font-weight: bold; */
    color: #fff;
    cursor: pointer;
}
.close{
    position: relative;
    left: 27rem;
}
hr{
    width: 193px;
    height: 2px;
    margin: 5px 0;
}

/* responsive-devision */

@media (max-width:768px) {
    .referral-banner {
        width: 100%;
    }
    .message {
        font-size: 12px;
    }
    .copy-btn {
        font-size: 10px;
    }
    
    
}