.verify-bg {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.verify-form {
    background: #272727;
    border-radius: 1.125rem;
    box-shadow: 0 0.5rem 2rem 0 rgba(0,0,0,0.37);
    padding: 2.5rem 2vw 2rem 2vw;
    width: 90vw;
    max-width: 24rem;
    min-width: 16rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.125rem;
}

.verify-logo {
    width: 7rem;
    max-width: 100%;
    height: auto;
    margin-bottom: 0.625rem;
    display: block;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    object-fit: contain;
}

.verify-form h2 {
    color: #fff;
    margin: 0 0 0.625rem 0;
    font-weight: 700;
    letter-spacing: 0.0625rem;
    font-size: 1.6rem;
    font-family: 'Roboto', Arial, sans-serif;
}

.verify-form input[type="text"],
.verify-form input[type="email"] {
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 0.875rem;
    margin-bottom: 0.75rem;
    border-radius: 0.5rem;
    border: none;
    background: #494949;
    color: #FFFFFF;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 0.08rem 0.35rem rgba(0,0,0,0.35);
    transition: background 0.2s, box-shadow 0.2s;
    font-family: 'Roboto', Arial, sans-serif;
}

.verify-form input::placeholder {
    color: #ABABAB;
    opacity: 1;
}

.verify-form input:focus {
    background: #505050;
    box-shadow: 0 0 0 0.14rem #06C6A4;
}

.verify-form button {
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 0;
    border-radius: 0.5rem;
    border: none;
    background: #06C6A4;
    color: #000000;
    font-size: 1.06rem;
    font-weight: 600;
    letter-spacing: 0.0625rem;
    cursor: pointer;
    box-shadow: 0 0.15rem 0.6rem rgba(255,255,255,0.21);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    font-family: 'Roboto', Arial, sans-serif;
}

.verify-form button:hover {
    background: #06b292;
    box-shadow: 0 0.25rem 1.2rem rgba(255,255,255,0.28);
    color: #000000;
}

.form-message {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    text-align: center;
}

.error-message {
    color: #e74c3c;
    background: rgba(231,76,60,0.1);
}

.success-message {
    color: #2ecc71;
    background: rgba(46,204,113,0.1);
}
