﻿@font-face {
    font-family: Cocon;
    src: url(Cocon.otf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Cocon;
    background-color: #222222;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
}

h1 {
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 22px;
    color: #cccccc;
    margin-bottom: 32px;
    font-weight: normal;
}

.verification-box {
    background-color: #232323;
    border: 1px solid #3d3d3d;
    border-radius: 4px;
    padding: 28px;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.verification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.message {
    font-size: 22px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 80px;
}

.footer {
    border-top: 1px solid #3d3d3d;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 15px;
    color: #999999;
}

.ray-id {
    display: flex;
    gap: 8px;
}

.footer-link {
    color: #999999;
    text-decoration: none !important;
}

.footer-link:hover {
    text-decoration: underline;
}