body {
    background: #fff;
    /* linear-gradient(135deg, #141E30, #243B55); */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* .container {
    text-align: center;
} */

.dark-bg {
    background:  #fff;
  border: none;
}

.light-txt {
    color: #000
}

.logo {
    width: 200px; /* Adjust as needed */
    height: auto; /* Maintain aspect ratio */
    background: linear-gradient(135deg, #141E30, #243B55); /* Gradient matching the background */
    -webkit-background-clip: text; /* Clip text to background gradient (Safari 3 and Chrome) */
    background-clip: text; /* Standard property for other browsers */
    -webkit-text-fill-color: transparent; /* Hide text color to reveal background gradient (Safari 3 and Chrome) */
}

.connect-btn {
    display: inline-block;
    background-color: #dc3545;
    color: #FFF;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; /* Remove underline from link */
    transition: background-color 0.3s ease;
}

.connect-btn:hover {
    background-color: #f54778;
}
