html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
}

.verify-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.verify-card {
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
}

.logo-box {
    margin-bottom: 25px;
}

.verify-logo {
    max-width: 180px;
    max-height: 100px;
    object-fit: contain;
}

.verify-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.verify-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}

.verify-form {
    width: 100%;
}

.verify-input {
    height: 52px;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #dcdcdc;
}

    .verify-input:focus {
        border-color: #111;
        box-shadow: 0 0 0 0.15rem rgba(0, 0, 0, 0.08);
    }

.verify-btn {
    height: 52px;
    border-radius: 12px;
    background-color: #111;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    transition: 0.3s ease;
}

    .verify-btn:hover {
        background-color: #333;
        color: #fff;
    }


.back-link {
    display: inline-block;
    margin-top: 8px;
    text-decoration: none;
    color: #999;
    font-size: 14px;
    transition: 0.3s;
}

    .back-link:hover {
        color: #000;
        letter-spacing: 0.5px;
    }