﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", serif !important;
    background: #0d0d0d;
    color: #fff;
}

.main-container {
    padding: 40px 0px 10px;
    /*max-width: 1200px;*/
    margin: auto;
    text-align: center;
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 40px;
}

.card {
    max-width: 650px;
    padding: 30px 40px;
    border-radius: 15px;
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    box-shadow: 0 3px 10px rgba(255, 153, 0, 0.05);
    transition: transform 0.2s ease;
}

    .card:hover {
        transform: translateY(-3px);
    }

.card-title {
    color: #24C4FE;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.primary-btn {
    background: linear-gradient(to right, #01338A, #24C4FE);
    border: none;
    color: #fff;
    padding: 12px 32px;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all .3s ease;
}

    .primary-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px #22bcf7a1;
    }

.instructions {
    margin: 15px 0;
}

.footer {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    color: #aaa;
    flex-wrap: wrap;
}

    .footer a {
        color: #24C4FE;
        text-decoration: none;
    }

        .footer a:hover {
            text-decoration: underline;
        }

.input-wrap {
    margin-bottom: 15px;
}

    .input-wrap input {
        width: 100%;
        background-color: #2b2114;
        border: 1px solid #3a2f20;
        padding: 12px 16px 12px 45px;
        border-radius: 8px;
        color: #fff;
        outline: none;
        cursor: default;
        transition: all .3s ease;
    }

        .input-wrap input:read-only {
            color: #ccc;
        }

        .input-wrap input:hover {
            background: #f7931a26;
            transform: translate(5px);
            color: #24C4FE;
        }

.user_icon {
    position: relative;
}

    .user_icon i {
        position: absolute;
        top: 15px;
        left: 16px;
        color: #24C4FE;
    }

.text-theme {
    color: #24C4FE;
}

.text-13 {
    line-height: 1.3;
}

.fw-200 {
    font-weight: 200 !important;
}

#connectBtn, #disconnectBtn {
    font-size: 15px;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    margin-bottom: 15px;
    width: 100%;
}

#connectBtn {
    background: #1cc343;
    color: #fff;
}

#disconnectBtn {
    background: #dc3545;
    color: #fff;
    display: none;
}
/* Responsive */
@media (max-width: 768px) {
    .card {
        padding: 30px 20px;
    }

    .card-container {
        flex-direction: column;
        align-items: center;
        margin: 0px 15px;
    }

    .footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (min-width: 768px) {
    .card {
        flex: 1 1 600px;
        min-height: 260px;
    }

    .footer {
        padding: 0 100px;
    }

    .text-13 {
        font-size: 3.25rem !important;
    }
}

.sweet-alert button {
    background-color: #24c4fe !important;
}