body {
    background-color: #000000;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;


    @font-face {
        font-family: 'TT Fors';
        src: url("/fonts/tt fors trial regular.woff2") format('woff2');
        font-weight: normal;
        font-style: normal;
    }
}

.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    max-width: 200px;
    height: auto;
}

.title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.verification-message {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.verification-message h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.verification-message p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.verification-form {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.verification-form h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    font-size: 1.1rem;
    border: 1px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    border-radius: 4px;
}

.verification-button {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.verification-button:hover {
    background-color: #cccccc;
}

.error {
    color: #ff6b6b;
}

.success {
    color: #4caf50;
}

.link-container {
    margin-top: 1.5rem;
}

.link-input {
    width: 100%;
    padding: 0.8rem;
    font-size: 1.1rem;
    border: 1px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.copy-button {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.copy-button:hover {
    background-color: #cccccc;
}