* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    background-color: black;
    color: white;
    font-family: sans-serif;
}

.main {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
}

form {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 30px;
}

label {
    font-size: 20px;
}

input {
    font-size: 16px;
    background: transparent;
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid #222;
    margin-top: 5px;
    color: white;
    width: 100%;
}

.main form h3,
.main form button {
    font-size: 16px;
    padding: 10px 20px;
    width: 100%;
    border-radius: 20px;
    border: none;
    background-color: #524f4f;
    color: white;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
}

.card-container {
    display: flex;
    gap: 30px;
}

.card {
    width: 280px;
    height: 420px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 0 20px #00f,
        0 0 40px #0ff,
        inset 0 0 10px rgba(255, 255, 255, 0.1);
}

.img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.3),
            transparent);

    color: white;
}

.overlay h2 {
    font-size: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.verify {
    color: #4da6ff;
    font-size: 24px;
}

.overlay p {
    font-size: 18px;
    margin: 8px 0;
    opacity: 0.8;
}

.bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stats span {
    font-size: 18px;
    margin-right: 10px;
    opacity: 0.8;
}

.card button {
    padding: 10px 30px;
    border-radius: 20px;
    border: none;
    background: #fff;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    font-size: 18px;
}

.card button:hover {
    transform: scale(1.1);
}